diff --git a/src/main/java/edu/unl/cse/soft160/before_and_after/BookAfter.java b/src/main/java/edu/unl/cse/soft160/before_and_after/BookAfter.java deleted file mode 100644 index b1c03d69305315ec5f44550f164e7df34d28fa5a..0000000000000000000000000000000000000000 --- a/src/main/java/edu/unl/cse/soft160/before_and_after/BookAfter.java +++ /dev/null @@ -1,13 +0,0 @@ -package edu.unl.cse.soft160.before_and_after; - -/** - * Hello world! - * - */ -public class BookAfter -{ - public static void main( String[] args ) - { - System.out.println( "Hello World!" ); - } -} diff --git a/src/main/java/edu/unl/cse/soft160/before_and_after/InClassAfter.java b/src/main/java/edu/unl/cse/soft160/before_and_after/InClassAfter.java deleted file mode 100644 index 508bf8741c9d440f4383d8fab4e020fad6c57062..0000000000000000000000000000000000000000 --- a/src/main/java/edu/unl/cse/soft160/before_and_after/InClassAfter.java +++ /dev/null @@ -1,13 +0,0 @@ -package edu.unl.cse.soft160.before_and_after; - -/** - * Hello world! - * - */ -public class InClassAfter -{ - public static void main( String[] args ) - { - System.out.println( "Hello World!" ); - } -} diff --git a/src/test/java/edu/unl/cse/soft160/before_and_after/BookAfterTest.java b/src/test/java/edu/unl/cse/soft160/before_and_after/BookAfterTest.java deleted file mode 100644 index 3512931e1274828fc77bcf0de3ce077a2958ee0f..0000000000000000000000000000000000000000 --- a/src/test/java/edu/unl/cse/soft160/before_and_after/BookAfterTest.java +++ /dev/null @@ -1,38 +0,0 @@ -package edu.unl.cse.soft160.before_and_after; - -import junit.framework.Test; -import junit.framework.TestCase; -import junit.framework.TestSuite; - -/** - * Unit test for simple App. - */ -public class BookAfterTest - extends TestCase -{ - /** - * Create the test case - * - * @param testName name of the test case - */ - public BookAfterTest( String testName ) - { - super( testName ); - } - - /** - * @return the suite of tests being tested - */ - public static Test suite() - { - return new TestSuite( BookAfterTest.class ); - } - - /** - * Rigourous Test :-) - */ - public void testApp() - { - assertTrue( true ); - } -} diff --git a/src/test/java/edu/unl/cse/soft160/before_and_after/InClassAfterTest.java b/src/test/java/edu/unl/cse/soft160/before_and_after/InClassAfterTest.java deleted file mode 100644 index 06a2ccb64758b1089e913f560243f201b0fcd07c..0000000000000000000000000000000000000000 --- a/src/test/java/edu/unl/cse/soft160/before_and_after/InClassAfterTest.java +++ /dev/null @@ -1,38 +0,0 @@ -package edu.unl.cse.soft160.before_and_after; - -import junit.framework.Test; -import junit.framework.TestCase; -import junit.framework.TestSuite; - -/** - * Unit test for simple App. - */ -public class InClassAfterTest - extends TestCase -{ - /** - * Create the test case - * - * @param testName name of the test case - */ - public InClassAfterTest( String testName ) - { - super( testName ); - } - - /** - * @return the suite of tests being tested - */ - public static Test suite() - { - return new TestSuite( InClassAfterTest.class ); - } - - /** - * Rigourous Test :-) - */ - public void testApp() - { - assertTrue( true ); - } -}