Initial Repo Data

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