Creates default project

This commit is contained in:
Julien Lengrand-Lambert
2025-04-30 10:14:33 +02:00
commit b792396835
18 changed files with 632 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package nl.lengrand
import org.junit.jupiter.api.Assertions.*
import org.junit.jupiter.api.Test
class GreetingTest {
@Test
fun greet() {
assertEquals("Hello, you!", Greeting().greet())
}
}