Fix temp test
This commit is contained in:
parent
f33db7e4e7
commit
1c191e2c17
6
pom.xml
6
pom.xml
@ -69,7 +69,9 @@
|
|||||||
<release>15</release>
|
<release>15</release>
|
||||||
<showWarnings>true</showWarnings>
|
<showWarnings>true</showWarnings>
|
||||||
<showDeprecation>true</showDeprecation>
|
<showDeprecation>true</showDeprecation>
|
||||||
<compilerArgs>--enable-preview</compilerArgs>
|
<compilerArgs>
|
||||||
|
<arg>--enable-preview</arg>
|
||||||
|
</compilerArgs>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
@ -78,7 +80,7 @@
|
|||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
<version>3.0.0-M5</version>
|
<version>3.0.0-M5</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<compilerArgs>--enable-preview</compilerArgs>
|
<argLine>--enable-preview</argLine>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
|
@ -4,7 +4,6 @@ module app {
|
|||||||
requires javafx.fxml;
|
requires javafx.fxml;
|
||||||
requires javafx.graphics;
|
requires javafx.graphics;
|
||||||
requires org.fxmisc.richtext;
|
requires org.fxmisc.richtext;
|
||||||
requires org.junit.jupiter.api;
|
|
||||||
|
|
||||||
exports app;
|
exports app;
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@ import static org.junit.jupiter.api.Assertions.assertEquals;
|
|||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.junit.jupiter.api.DisplayName;
|
import org.junit.jupiter.api.DisplayName;
|
||||||
|
|
||||||
public class MainTest {
|
class MainTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@DisplayName("Temp Test")
|
@DisplayName("Temp Test")
|
||||||
|
Loading…
Reference in New Issue
Block a user