Created
December 3, 2017 12:21
-
-
Save azamsharp/b2246b450f0dbad67a1de762f0288dd9 to your computer and use it in GitHub Desktop.
Unit Test Customer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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