From 42f162a03a780afe0c23759e30af1329c0383342 Mon Sep 17 00:00:00 2001 From: Ross W Date: Sun, 17 Aug 2025 21:49:26 +0100 Subject: [PATCH] Remove AppTest.java --- src/test/java/org/hirw/game/AppTest.java | 38 ------------------------ 1 file changed, 38 deletions(-) delete mode 100644 src/test/java/org/hirw/game/AppTest.java diff --git a/src/test/java/org/hirw/game/AppTest.java b/src/test/java/org/hirw/game/AppTest.java deleted file mode 100644 index e9c5c37..0000000 --- a/src/test/java/org/hirw/game/AppTest.java +++ /dev/null @@ -1,38 +0,0 @@ -package org.hirw.game; - -import junit.framework.Test; -import junit.framework.TestCase; -import junit.framework.TestSuite; - -/** - * Unit test for simple App. - */ -public class AppTest - extends TestCase -{ - /** - * Create the test case - * - * @param testName name of the test case - */ - public AppTest( String testName ) - { - super( testName ); - } - - /** - * @return the suite of tests being tested - */ - public static Test suite() - { - return new TestSuite( AppTest.class ); - } - - /** - * Rigourous Test :-) - */ - public void testApp() - { - assertTrue( true ); - } -}