Skip to content

Instantly share code, notes, and snippets.

@polac24
Created March 31, 2019 17:58
Show Gist options
  • Save polac24/93bb41a09fec38e0b99337d011778236 to your computer and use it in GitHub Desktop.
Save polac24/93bb41a09fec38e0b99337d011778236 to your computer and use it in GitHub Desktop.
func testAddingUser_savesToDatabase () {
// Arrange
var addedUser: String?
database.addUserAction = { name in
addedUser = name
return false
}
// Act
...
// Assert
XCTAssertEqual(addedUser, "myuser")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment