Skip to content

Instantly share code, notes, and snippets.

@jacobmoncur
Created July 30, 2015 06:54
Show Gist options
  • Save jacobmoncur/50bd834d7d3f71be55c2 to your computer and use it in GitHub Desktop.
Save jacobmoncur/50bd834d7d3f71be55c2 to your computer and use it in GitHub Desktop.
Kotlin + Junit test class
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