Skip to content
Snippets Groups Projects
Commit 34658e41 authored by vle2's avatar vle2
Browse files

Fixed comments for drawMethodsDectRedrawnLines function

parent c9a031fc
Branches
No related merge requests found
......@@ -47,12 +47,12 @@ public class DotsAndBoxesGridTest {
// code to test that drawHorizontal throws an exception if the line was already drawn goes here
assertThrows(IllegalStateException.class, () -> {
case2.drawHorizontal(0, 0, 1); // divide by zero throws an exception for int/int
case2.drawHorizontal(0, 0, 1);
});
// code to test that drawVertical throws an exception if the line was already drawn goes here
assertThrows(IllegalStateException.class, () -> {
case2.drawVertical(0, 0, 0); // divide by zero throws an exception for int/int
case2.drawVertical(0, 0, 0);
});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment