Browse Source

remove ReactNativeNavigationTests target - unused

Ran Greenberg 8 years ago
parent
commit
bacc2a00c5

+ 0
- 22
ios/ReactNativeNavigationTests/Info.plist View File

@@ -1,22 +0,0 @@
1
-<?xml version="1.0" encoding="UTF-8"?>
2
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
-<plist version="1.0">
4
-<dict>
5
-	<key>CFBundleDevelopmentRegion</key>
6
-	<string>en</string>
7
-	<key>CFBundleExecutable</key>
8
-	<string>$(EXECUTABLE_NAME)</string>
9
-	<key>CFBundleIdentifier</key>
10
-	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11
-	<key>CFBundleInfoDictionaryVersion</key>
12
-	<string>6.0</string>
13
-	<key>CFBundleName</key>
14
-	<string>$(PRODUCT_NAME)</string>
15
-	<key>CFBundlePackageType</key>
16
-	<string>BNDL</string>
17
-	<key>CFBundleShortVersionString</key>
18
-	<string>1.0</string>
19
-	<key>CFBundleVersion</key>
20
-	<string>1</string>
21
-</dict>
22
-</plist>

+ 0
- 27
ios/ReactNativeNavigationTests/RNNRootViewControllerTest.m View File

@@ -1,27 +0,0 @@
1
-//
2
-//  RNNRootViewControllerTest.m
3
-//  ReactNativeNavigation
4
-//
5
-//  Created by Daniel Zlotin on 07/02/2017.
6
-//  Copyright © 2017 Wix. All rights reserved.
7
-//
8
-
9
-#import <XCTest/XCTest.h>
10
-
11
-#import "RNNRootViewController.h"
12
-
13
-@interface RNNRootViewControllerTest : XCTestCase
14
-
15
-@end
16
-
17
-@implementation RNNRootViewControllerTest
18
-
19
-
20
-- (void)sendsEventOnAppear {
21
-	NSDictionary* params = @{};
22
-	RNNRootViewController* uut = [[RNNRootViewController alloc] initWithNode:[RNNLayoutNode create:params]];
23
-	[uut viewDidAppear:true];
24
-}
25
-
26
-
27
-@end