Skip to content

Instantly share code, notes, and snippets.

@garsdle
Last active April 16, 2018 00:17
Show Gist options
  • Save garsdle/feed2dd09cc6209f25c61c408a190518 to your computer and use it in GitHub Desktop.
Save garsdle/feed2dd09cc6209f25c61c408a190518 to your computer and use it in GitHub Desktop.
Map Unit Testing
func testJSONToUser() {
let userDictionary = mockUserAPI.getUserDictionary()
guard let user = UserMapper().map(userDictionary) else {
XCTFail("Failed to map User")
return
}
XCTAssert(user.id == 11235)
XCTAssert(user.name == "BobEsponja")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment