Puzzle8 Fixes

- added junit.jupiter testing
- created tests for puzzle8
- fixed bugs for constructors
- implemented better methods for solving puzzle
This commit is contained in:
2023-12-12 18:05:51 +01:00
parent c4d4bc76b8
commit 6ac1ff463d
4 changed files with 248 additions and 32 deletions

View File

@@ -13,4 +13,13 @@
<maven.compiler.target>1.17</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.9.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>