test: add JUnit 5 + surefire harness

This commit is contained in:
simoleo89
2026-06-04 20:45:10 +02:00
parent 5094d6ce4f
commit f9644d83b7
2 changed files with 26 additions and 1 deletions
@@ -0,0 +1,11 @@
package com.eu.habbo;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertTrue;
class SmokeTest {
@Test
void harnessRuns() {
assertTrue(true);
}
}