Created
October 24, 2017 12:54
-
-
Save fbcbl/9c02bcdf4a8d776ff8f08ec03ef99b2c to your computer and use it in GitHub Desktop.
kotlin_testing_pt3_test_1
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
| @Test | |
| fun `the full name is the concatenation of the first and last name`() { | |
| val user = User(firstName = "Fábio", lastName = "Carballo", age = 26) | |
| assertEquals("Fábio Carballo", user.fullName) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment