From f9644d83b75d5edfa36fd8c26e0c437606004f4e Mon Sep 17 00:00:00 2001 From: simoleo89 Date: Thu, 4 Jun 2026 20:45:10 +0200 Subject: [PATCH] test: add JUnit 5 + surefire harness --- Emulator/pom.xml | 16 +++++++++++++++- .../src/test/java/com/eu/habbo/SmokeTest.java | 11 +++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 Emulator/src/test/java/com/eu/habbo/SmokeTest.java diff --git a/Emulator/pom.xml b/Emulator/pom.xml index 3d2eec4c..9cdbb427 100644 --- a/Emulator/pom.xml +++ b/Emulator/pom.xml @@ -62,6 +62,12 @@ public + + + org.apache.maven.plugins + maven-surefire-plugin + 3.2.5 + @@ -172,12 +178,20 @@ 0.4 - org.eclipse.angus jakarta.mail 2.0.3 + + + + org.junit.jupiter + junit-jupiter + 5.10.2 + test + diff --git a/Emulator/src/test/java/com/eu/habbo/SmokeTest.java b/Emulator/src/test/java/com/eu/habbo/SmokeTest.java new file mode 100644 index 00000000..15b142ee --- /dev/null +++ b/Emulator/src/test/java/com/eu/habbo/SmokeTest.java @@ -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); + } +}