initial Gradle build

This commit is contained in:
Thomas Peetz
2020-07-11 14:41:01 +02:00
parent 17ac5ad084
commit 0aacceefed
6 changed files with 72 additions and 0 deletions
@@ -0,0 +1,14 @@
/*
* This Java source file was generated by the Gradle 'init' task.
*/
package com.ibtp.network.osi;
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());
}
}