Skip to content

Commit

Permalink
add new test case and disable random tests
Browse files Browse the repository at this point in the history
  • Loading branch information
creme332 committed Jul 7, 2024
1 parent 724a14c commit 4d2e5c8
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@ public static Collection<TestCase> fixedTestCases() {
{ 0, 1, 2, 3, 4 }
}));

testCases.add(new TestCase("m has recurring decimal places", -10, -9, 7, 9, new int[][] {
{ -10, -9, -8, -7, -6, -5, -4, -3, -2, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7 },
{ -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }
}));
return testCases;
}

Expand Down Expand Up @@ -120,7 +124,6 @@ public static int[] generateRandomCoordinate() {
return new int[] { x, y };
}

@Test
public void testRandom() {
final int NUM_TESTS = 100;

Expand Down

0 comments on commit 4d2e5c8

Please sign in to comment.