我尝试了this sample,但它引发了语法错误。有没有其他方法来测试Kotlin?例如,使用JUnit还是Spek?
import kotlin.test.assertEquals
import org.jetbrains.spek.api.Spek
class BlaherSpecs: Spek() {{
given("Let's test Blaher") {
var blaher = Blaher()
on("Blaher blah") {
val blah = blaher.blah()
it("should be Blah!") {
assertEquals("Blah1!", blah)
}
}
}
}}