Created
December 3, 2017 18:15
-
-
Save azamsharp/0fc10a34f3606a2d43eec74bbfd53af3 to your computer and use it in GitHub Desktop.
Passing Launch Arguments
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class When_User_Is_Registering_For_A_New_Account: XCTestCase { | |
private var app :XCUIApplication! | |
override func setUp() { | |
super.setUp() | |
continueAfterFailure = false | |
self.app = XCUIApplication() | |
self.app.launchArguments = ["UI-Testing"] | |
self.app.launch() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment