Created
April 23, 2021 21:54
-
-
Save ZieIony/ab3262fc9af9cd24c86cfd68554792a7 to your computer and use it in GitHub Desktop.
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
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