Removing Inital Classes

This commit is contained in:
2021-01-11 13:03:34 +01:00
parent be2d34b9f9
commit 1c8415165f
4 changed files with 0 additions and 20 deletions
-8
View File
@@ -1,8 +0,0 @@
/*
* This Java source file was generated by the Gradle 'init' task.
*/
public class Library {
public boolean someLibraryMethod() {
return true;
}
}
-12
View File
@@ -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());
}
}