From bd611ec2878d64242ddf460d439182e7201c444c Mon Sep 17 00:00:00 2001 From: ofek29 Date: Wed, 9 Jul 2025 19:30:33 +0000 Subject: [PATCH] fix: remove app test --- src/test/java/com/ofek/queue/AppTest.java | 38 ----------------------- 1 file changed, 38 deletions(-) delete mode 100644 src/test/java/com/ofek/queue/AppTest.java diff --git a/src/test/java/com/ofek/queue/AppTest.java b/src/test/java/com/ofek/queue/AppTest.java deleted file mode 100644 index cc93fa5..0000000 --- a/src/test/java/com/ofek/queue/AppTest.java +++ /dev/null @@ -1,38 +0,0 @@ -package com.ofek.queue; - -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 ); - } -}