diff --git a/.idea/GeneticAlgorithms.iml b/.idea/GeneticAlgorithms.iml new file mode 100644 index 0000000000000000000000000000000000000000..78b2cc53b203f0b97534bb1184cdc7b474339fb4 --- /dev/null +++ b/.idea/GeneticAlgorithms.iml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<module type="JAVA_MODULE" version="4" /> \ No newline at end of file diff --git a/pom.xml b/pom.xml index 2424fa1a93170e1131cf2aa40636f4af27f5a76e..7ac4ce7f8e334773de87996576370749f0f26603 100644 --- a/pom.xml +++ b/pom.xml @@ -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 diff --git a/src/test/java/EvaluatorTest.java b/src/test/java/EvaluatorTest.java new file mode 100644 index 0000000000000000000000000000000000000000..8906d3152a5e6a0e89ab1223471ea63c867f34d5 --- /dev/null +++ b/src/test/java/EvaluatorTest.java @@ -0,0 +1,9 @@ +import org.junit.jupiter.api.Test; + +class EvaluatorTest { + + @Test + void justAnExample() { + + } +} \ No newline at end of file