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

This commit is contained in:
James Strachan
2012-06-12 12:48:14 +01:00
parent f3986e428d
commit 768469fb23
19 changed files with 3967 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!"
}
}