Created test module

This commit is contained in:
Anuken
2018-10-03 15:53:33 -04:00
parent 9a286800d6
commit f0870b3236
11 changed files with 28 additions and 3 deletions
+4
View File
@@ -0,0 +1,4 @@
apply plugin: "java"
sourceCompatibility = 1.8
sourceSets.main.java.srcDirs = [ "src/" ]
+9
View File
@@ -0,0 +1,9 @@
import org.junit.jupiter.api.Test;
public class Tests{
@Test
void testThings(){
}
}