added support for generation of QUnit unit tests from Kotlin JUnit test cases

This commit is contained in:
James Strachan
2012-06-01 15:25:35 +01:00
parent 87b16b6a1f
commit 9f0fcc280b
19 changed files with 3963 additions and 33 deletions
+16
View File
@@ -0,0 +1,16 @@
package testPackage
import org.junit.Test as test
class SimpleTest {
public fun testFoo() {
val name = "world"
val message = "hello $name!"
}
test fun cheese() {
val name = "world"
val message = "bye $name!"
}
}