Skip to content

Instantly share code, notes, and snippets.

@luismachado
Created March 14, 2018 07:17
Show Gist options
  • Save luismachado/fb6bdc8724e8c3a966245790ee6b0581 to your computer and use it in GitHub Desktop.
Save luismachado/fb6bdc8724e8c3a966245790ee6b0581 to your computer and use it in GitHub Desktop.
XCTAssertEqual(newScore, 5)
expect(newScore).to(equal(5))
XCTAssertEqual(result, false)
expect(result).to(beFalse())
XCTAssertNotNil(response.score)
expect(response.score).toNot(beNil())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment