From dae849ba9b88bab9c01dbc64dad913901bdf41a8 Mon Sep 17 00:00:00 2001 From: pc Date: Fri, 10 Feb 2023 12:46:21 +0100 Subject: [PATCH] =?UTF-8?q?"Dateien=20gel=C3=B6scht"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gruppenprojekt/Aaaa.java | 10 ---------- gruppenprojekt/TestJUnit.java | 36 ----------------------------------- 2 files changed, 46 deletions(-) delete mode 100644 gruppenprojekt/Aaaa.java delete mode 100644 gruppenprojekt/TestJUnit.java diff --git a/gruppenprojekt/Aaaa.java b/gruppenprojekt/Aaaa.java deleted file mode 100644 index 3cdb39b..0000000 --- a/gruppenprojekt/Aaaa.java +++ /dev/null @@ -1,10 +0,0 @@ -package gruppenprojekt; - -public class Aaaa { - - public static void main(String[] args) { - // TODO Auto-generated method stub - System.out.println("Hello World"); - } - -} diff --git a/gruppenprojekt/TestJUnit.java b/gruppenprojekt/TestJUnit.java deleted file mode 100644 index f18f391..0000000 --- a/gruppenprojekt/TestJUnit.java +++ /dev/null @@ -1,36 +0,0 @@ -package gruppenprojekt; - -import static org.junit.Assert.*; - -import org.junit.After; -import org.junit.AfterClass; -import org.junit.Before; -import org.junit.BeforeClass; -import org.junit.Test; - -public class TestJUnit { - - // https://www.softwaretestinghelp.com/download-and-install-junit/#Set_Up_Environment_Variables - - @BeforeClass - public static void setUpBeforeClass() throws Exception { - } - - @AfterClass - public static void tearDownAfterClass() throws Exception { - } - - @Before - public void setUp() throws Exception { - } - - @After - public void tearDown() throws Exception { - } - - @Test - public void test() { - //fail("Not yet implemented"); - } - -}