Skip to content

Instantly share code, notes, and snippets.

@Kdan
Last active January 26, 2021 14:25
Show Gist options
  • Save Kdan/48ca1aab20295494f61f5a2dbc128142 to your computer and use it in GitHub Desktop.
Save Kdan/48ca1aab20295494f61f5a2dbc128142 to your computer and use it in GitHub Desktop.
func testCheckAnswerTrue() {
b.validateAnswerResponse = true
a.checkAnswer()
XCTAssertTrue(a.hasAnswer)
// The `validateAnswer()` function should be called exactly once.
let call = b.calls(with: .validateAnswer)
XCTAssertNotNil(call)
XCTAssertEqual(call?.numberOfCalls, 1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment