Skip to content

Instantly share code, notes, and snippets.

@ZieIony
Created April 23, 2021 21:48
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/7b44e537f933d6780fa830ff1efdd7aa to your computer and use it in GitHub Desktop.
Save ZieIony/7b44e537f933d6780fa830ff1efdd7aa to your computer and use it in GitHub Desktop.
fun myFunction(input: Int):Int {
return input * 2
}
fun simpleTest() {
val testInput = 2
val testOutput = 4
if (myFunction(testInput) != testOutput)
// test failed
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment