Created
July 30, 2015 06:54
-
-
Save jacobmoncur/50bd834d7d3f71be55c2 to your computer and use it in GitHub Desktop.
Kotlin + Junit test class
This file contains 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
import org.junit.Assert | |
import org.junit.Test as test | |
public class AuthenticationTest { | |
test public fun login() { | |
Assert.assertTrue(1 == 1) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment