Skip to content
Snippets Groups Projects
Commit 72b456a5 authored by Lennart Eichhorn's avatar Lennart Eichhorn
Browse files

Added jUnit5 to project.

Wrote an example test.
parent 192883ec
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4" />
\ No newline at end of file
......@@ -18,6 +18,11 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
</plugin>
</plugins>
</build>
......@@ -39,5 +44,17 @@
<artifactId>jcodec-javase</artifactId>
<version>0.2.2</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.4.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.4.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
\ No newline at end of file
import org.junit.jupiter.api.Test;
class EvaluatorTest {
@Test
void justAnExample() {
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment