chore: Project structure

This commit is contained in:
Tibo De Peuter 2025-03-27 10:46:40 +01:00
parent 948de3de02
commit 4054ed5fce
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
9 changed files with 511 additions and 2 deletions

25
tests/someTest.kt Normal file
View file

@ -0,0 +1,25 @@
package be.ugent.logprog
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.Assertions.*
import testMe
class MainTest {
@Test
fun Main_should_return_string() {
assertTrue(true)
}
@Test
fun testMe_should_return_string() {
assertEquals("Hello, Kotlin Command Line Utility!", testMe())
assertInstanceOf(String::class.java, testMe())
}
@Test
fun testMe_shouldfail() {
assertTrue(false, "This test should fail");
}
}