From c9e37e8d64760bc61d672700c701ad88ec1948c9 Mon Sep 17 00:00:00 2001 From: Swordsteel Date: Sat, 12 Apr 2025 17:26:24 +0200 Subject: [PATCH] add file structure --- build.gradle.kts | 3 +++ src/main/kotlin/ltd/hlaeja/library/Hlaeja.kt | 8 ++++++++ src/test/kotlin/ltd/hlaeja/library/HlaejaTest.kt | 11 +++++++++++ 3 files changed, 22 insertions(+) create mode 100644 src/main/kotlin/ltd/hlaeja/library/Hlaeja.kt create mode 100644 src/test/kotlin/ltd/hlaeja/library/HlaejaTest.kt diff --git a/build.gradle.kts b/build.gradle.kts index 700b7f4..d3f9082 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,6 +4,9 @@ plugins { } dependencies { + testImplementation(hlaeja.kotlin.test.junit5) + + testRuntimeOnly(hlaeja.junit.platform.launcher) } group = "ltd.lulz" diff --git a/src/main/kotlin/ltd/hlaeja/library/Hlaeja.kt b/src/main/kotlin/ltd/hlaeja/library/Hlaeja.kt new file mode 100644 index 0000000..12cb7fe --- /dev/null +++ b/src/main/kotlin/ltd/hlaeja/library/Hlaeja.kt @@ -0,0 +1,8 @@ +package ltd.hlaeja.library + +class Hlaeja { + + fun hilaria() { + TODO("library not implemented") + } +} diff --git a/src/test/kotlin/ltd/hlaeja/library/HlaejaTest.kt b/src/test/kotlin/ltd/hlaeja/library/HlaejaTest.kt new file mode 100644 index 0000000..cb77283 --- /dev/null +++ b/src/test/kotlin/ltd/hlaeja/library/HlaejaTest.kt @@ -0,0 +1,11 @@ +package ltd.hlaeja.library + +import org.junit.jupiter.api.Test + +class HlaejaTest { + + @Test + fun `Hlaeja Hilaria Test`() { + // Placeholder + } +}