File tree Expand file tree Collapse file tree 3 files changed +54
-32
lines changed Expand file tree Collapse file tree 3 files changed +54
-32
lines changed Original file line number Diff line number Diff line change
1
+ //
2
+ // ExampleUITests.swift
3
+ // ExampleUITests
4
+ //
5
+ // Created by Krunoslav Zaher on 1/1/16.
6
+ // Copyright © 2016 kzaher. All rights reserved.
7
+ //
8
+ import XCTest
9
+ import CoreLocation
10
+
11
+ class ExampleUITests : XCTestCase {
12
+
13
+ override func setUp( ) {
14
+ super. setUp ( )
15
+
16
+ continueAfterFailure = false
17
+ XCUIApplication ( ) . launch ( )
18
+ }
19
+
20
+ override func tearDown( ) {
21
+ super. tearDown ( )
22
+ }
23
+
24
+ func testExample( ) {
25
+ XCUIApplication ( ) . tables. element ( boundBy: 0 ) . cells. staticTexts [ " Randomize Example " ] . tap ( )
26
+
27
+ let time : TimeInterval = 120.0
28
+
29
+ RunLoop . current. run ( until: Date ( ) . addingTimeInterval ( time) )
30
+ }
31
+
32
+ }
Original file line number Diff line number Diff line change
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 >
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments