Colton Idle
class MyTest { @Test fun `test something`() { Assert.assertEquals("asdf", "asdf") } }
christophsturm
plugins { id("java-library") id("kotlin") } java { sourceCompatibility = JavaVersion.VERSION_1_7 targetCompatibility = JavaVersion.VERSION_1_7 } dependencies { testImplementation("junit:junit:4.12") }
A modern programming language that makes developers happier.