Skip to content

Instantly share code, notes, and snippets.

@cipolleschi
Created August 15, 2020 17:05
Show Gist options
  • Save cipolleschi/f9fb94e91a54315d98973c5da3be06fe to your computer and use it in GitHub Desktop.
Save cipolleschi/f9fb94e91a54315d98973c5da3be06fe to your computer and use it in GitHub Desktop.
func testPurchasingCoins_success() {
self.app.launchArguments.append(contentsOf: [
"-mockPurchase", "true"
])
self.app.launch()
// ... assert what should happen ...
}
func testPurchasingCoins_failure() {
self.app.launchArguments.append(contentsOf: [
"-mockPurchase", "false"
])
self.app.launch()
// ... assert what should happen ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment