Added examples.
This commit is contained in:
parent
877e4bd622
commit
474263452f
85 changed files with 2429 additions and 107 deletions
3
examples/kotlin/src/main/kotlin/com/example/Main.kt
Normal file
3
examples/kotlin/src/main/kotlin/com/example/Main.kt
Normal file
|
@ -0,0 +1,3 @@
|
|||
package com.example
|
||||
|
||||
fun main(args: Array<String>) = println("Hello world.")
|
8
examples/kotlin/src/test/kotlin/com/example/MainTest.kt
Normal file
8
examples/kotlin/src/test/kotlin/com/example/MainTest.kt
Normal file
|
@ -0,0 +1,8 @@
|
|||
package com.example
|
||||
|
||||
import org.testng.annotations.Test
|
||||
|
||||
class ExampleTest {
|
||||
@Test
|
||||
fun f() = println("Running test")
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue