Initial commit
This commit is contained in:
commit
f837b26903
47 changed files with 1365 additions and 0 deletions
18
examples/src/test/kotlin/com/example/ExampleTest.kt
Normal file
18
examples/src/test/kotlin/com/example/ExampleTest.kt
Normal file
|
@ -0,0 +1,18 @@
|
|||
package com.example
|
||||
|
||||
class ExampleTest {
|
||||
fun verifyHello() {
|
||||
if ("Hello World!" != Example().message) {
|
||||
throw AssertionError()
|
||||
} else {
|
||||
println("Succeeded")
|
||||
}
|
||||
}
|
||||
|
||||
companion object {
|
||||
@JvmStatic
|
||||
fun main(args: Array<String>) {
|
||||
ExampleTest().verifyHello()
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue