mirror of
https://github.com/zhigang1992/react-native-notifications.git
synced 2026-06-12 00:34:37 +08:00
26 lines
360 B
Objective-C
26 lines
360 B
Objective-C
#import <XCTest/XCTest.h>
|
|
#import "RNBridgeModule.h"
|
|
#import <OCMock/OCMock.h>
|
|
|
|
@interface RNBridgeModuleIntegrationTest : XCTestCase
|
|
|
|
@property (nonatomic, strong) RNBridgeModule* bridgeModule;
|
|
|
|
@end
|
|
|
|
@implementation RNBridgeModuleIntegrationTest
|
|
|
|
- (void)setUp {
|
|
|
|
}
|
|
|
|
- (void)tearDown {
|
|
|
|
}
|
|
|
|
- (void)testRequestPermissionsWithCategories {
|
|
|
|
}
|
|
|
|
@end
|