Guest User

Untitled

a guest
Mar 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. XCTAssertEqual(newScore, 5)
  2. expect(newScore).to(equal(5))
  3.  
  4. XCTAssertEqual(result, false)
  5. expect(result).to(beFalse())
  6.  
  7. XCTAssertNotNil(response.score)
  8. expect(response.score).toNot(beNil())
Add Comment
Please, Sign In to add comment