diff --git a/src/test/kotlin/TestingCI.kt b/src/test/kotlin/TestingCI.kt new file mode 100644 index 0000000..788c7aa --- /dev/null +++ b/src/test/kotlin/TestingCI.kt @@ -0,0 +1,10 @@ +import kotlin.test.Test +import kotlin.test.fail + +class TestingCI { + + @Test + fun test() { + fail("test failed") + } +} \ No newline at end of file