Skip to content

Instantly share code, notes, and snippets.

@fbcbl
Created October 24, 2017 12:54
Show Gist options
  • Save fbcbl/9c02bcdf4a8d776ff8f08ec03ef99b2c to your computer and use it in GitHub Desktop.
Save fbcbl/9c02bcdf4a8d776ff8f08ec03ef99b2c to your computer and use it in GitHub Desktop.
kotlin_testing_pt3_test_1
@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