Skip to content

Instantly share code, notes, and snippets.

@ZieIony
Created April 23, 2021 21:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ZieIony/ab3262fc9af9cd24c86cfd68554792a7 to your computer and use it in GitHub Desktop.
Save ZieIony/ab3262fc9af9cd24c86cfd68554792a7 to your computer and use it in GitHub Desktop.
fun myFunction(input: Int):Int {
return input * 2
}
@Test
fun simpleTest() {
val testInput = 2
val testOutput = 4
assertEquals(testOutput, myFunction(testInput))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment