Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Created December 3, 2017 12:21
Show Gist options
  • Save azamsharp/b2246b450f0dbad67a1de762f0288dd9 to your computer and use it in GitHub Desktop.
Save azamsharp/b2246b450f0dbad67a1de762f0288dd9 to your computer and use it in GitHub Desktop.
Unit Test Customer
class When_Trying_To_Create_User : XCTestCase {
func test_should_create_user_successfully() {
let user = User(username: "johndoe", password: "password")
XCTAssertNotNil(user)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment