Skip to content

Commit

Permalink
reverted TestRunner.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin-771 authored Oct 20, 2023
1 parent 0613fb6 commit 049226e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/test/java/legup/TestRunner.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* This class runs all of the tests for the project without needing to run build scripts.
*/
public class TestRunner {
public static void main(String[] args) {
public static void main(String[] args) {
// Battleship Tests
Result result1 = JUnitCore.runClasses(AdjacentShipsContradictionRuleTest.class);
printTestResults(result1);
Expand Down Expand Up @@ -75,7 +75,8 @@ public static void main(String[] args) {
printTestResults(result26);
Result result27 = JUnitCore.runClasses(WhiteBottleNeckDirectRuleTest.class);
printTestResults(result27);



// Treetent
Result result28 = JUnitCore.runClasses(EmptyFieldDirectRuleTest.class);
printTestResults(result28);
Expand Down

0 comments on commit 049226e

Please sign in to comment.