From 3ce816f91a5a7536ce2034af469d68cd9ed7dd7f Mon Sep 17 00:00:00 2001 From: Matthew Strapp Date: Tue, 29 Oct 2024 08:50:02 -0500 Subject: feat: Add Java/JVM (#24) Signed-off-by: Matt Strapp --- src/main/kotlin/io/github/Locusts.kt | 12 ++++++++++++ src/test/kotlin/io/github/LocustsTest.kt | 14 ++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 src/main/kotlin/io/github/Locusts.kt create mode 100644 src/test/kotlin/io/github/LocustsTest.kt (limited to 'src') diff --git a/src/main/kotlin/io/github/Locusts.kt b/src/main/kotlin/io/github/Locusts.kt new file mode 100644 index 0000000..1e31b0e --- /dev/null +++ b/src/main/kotlin/io/github/Locusts.kt @@ -0,0 +1,12 @@ +/* + * This source file was generated by the Gradle 'init' task + */ +package io.github.locustsRUs.locusts + +class Locusts { + companion object { + fun introduceLocusts() { + return + } + } +} diff --git a/src/test/kotlin/io/github/LocustsTest.kt b/src/test/kotlin/io/github/LocustsTest.kt new file mode 100644 index 0000000..39999e5 --- /dev/null +++ b/src/test/kotlin/io/github/LocustsTest.kt @@ -0,0 +1,14 @@ +/* + * This source file was generated by the Gradle 'init' task + */ +package io.github.locustsRUs.locusts + +import kotlin.test.Test +import kotlin.test.assertEquals + +class LibraryTest { + @Test + fun locustsShouldGetIntroduced() { + assertEquals(Locusts.introduceLocusts(), Unit, "Locusts should be introduced") + } +} -- cgit v1.2.3