Fixed compile errors

This commit is contained in:
Anuken 2018-10-03 17:17:12 -04:00
parent f0870b3236
commit 34715b1e06
2 changed files with 3 additions and 4 deletions

View File

@ -1,4 +1,3 @@
apply plugin: "java"
sourceCompatibility = 1.8
sourceSets.main.java.srcDirs = [ "src/" ]

View File

@ -1,9 +1,9 @@
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.BeforeEach;
public class Tests{
@Test
void testThings(){
@BeforeEach
void launchApplication(){
}
}