RACTestUIButton.h 315 B

1234567891011121314151617
  1. //
  2. // RACTestUIButton.h
  3. // ReactiveCocoa
  4. //
  5. // Created by Justin Spahr-Summers on 2013-06-15.
  6. // Copyright (c) 2013 GitHub, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. // Enables use of -sendActionsForControlEvents: in unit tests.
  10. @interface RACTestUIButton : UIButton
  11. + (instancetype)button;
  12. @end