Skip to content

Instantly share code, notes, and snippets.

@pgrangeiro
Created May 30, 2019 22:49
Show Gist options
  • Save pgrangeiro/729c069788e33be0b8013474f4409b1d to your computer and use it in GitHub Desktop.
Save pgrangeiro/729c069788e33be0b8013474f4409b1d to your computer and use it in GitHub Desktop.
class SomaTestCase {
@Test
fun `soma() returns value correctly`() {
val (a, b) = Pair(1, 2)
val result = soma(a, b)
assertThat(result).isEqual(3)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment