react-native/Libraries/RCTTest/RCTTestModule.h

46 lines
999 B
C
Raw Permalink Normal View History

/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
2015-03-24 17:20:13 +00:00
#import <UIKit/UIKit.h>
#import <React/RCTBridgeModule.h>
#import <React/RCTDefines.h>
typedef NS_ENUM(NSInteger, RCTTestStatus) {
RCTTestStatusPending = 0,
RCTTestStatusPassed,
RCTTestStatusFailed
};
2015-03-24 17:20:13 +00:00
@class FBSnapshotTestController;
@interface RCTTestModule : NSObject <RCTBridgeModule>
/**
* The snapshot test controller for this module.
*/
@property (nonatomic, strong) FBSnapshotTestController *controller;
2015-03-24 17:20:13 +00:00
/**
* This is the view to be snapshotted.
*/
@property (nonatomic, strong) UIView *view;
2015-04-02 14:33:21 +00:00
/**
* This is used to give meaningful names to snapshot image files.
*/
@property (nonatomic, assign) SEL testSelector;
/**
* This is polled while running the runloop until true.
*/
@property (nonatomic, readonly) RCTTestStatus status;
2015-03-24 17:20:13 +00:00
@property (nonatomic, copy) NSString *testSuffix;
@end