diff --git a/bin/Library.class b/bin/Library.class deleted file mode 100644 index 2e6e624..0000000 Binary files a/bin/Library.class and /dev/null differ diff --git a/bin/LibraryTest.class b/bin/LibraryTest.class deleted file mode 100644 index a9ec6c8..0000000 Binary files a/bin/LibraryTest.class and /dev/null differ diff --git a/src/main/java/Library.java b/src/main/java/Library.java deleted file mode 100644 index fa1b41a..0000000 --- a/src/main/java/Library.java +++ /dev/null @@ -1,8 +0,0 @@ -/* - * This Java source file was generated by the Gradle 'init' task. - */ -public class Library { - public boolean someLibraryMethod() { - return true; - } -} diff --git a/src/test/java/LibraryTest.java b/src/test/java/LibraryTest.java deleted file mode 100644 index 645740d..0000000 --- a/src/test/java/LibraryTest.java +++ /dev/null @@ -1,12 +0,0 @@ -/* - * This Java source file was generated by the Gradle 'init' task. - */ -import org.junit.Test; -import static org.junit.Assert.*; - -public class LibraryTest { - @Test public void testSomeLibraryMethod() { - Library classUnderTest = new Library(); - assertTrue("someLibraryMethod should return 'true'", classUnderTest.someLibraryMethod()); - } -}