Skip to content

Commit

Permalink
Enhanced test to demonstrate problem of the paddedCell implementation…
Browse files Browse the repository at this point in the history
…. After 'apply', the 'check' should not fail, but it does.
  • Loading branch information
fvgh committed Apr 29, 2017
1 parent 81c5461 commit c18a511
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,10 @@ public void paddedCellApply() throws IOException {
assertFileContent("A", cycle.file); // cycle -> first element in cycle
assertFileContent("", converge.file); // converge -> converges
assertFileContent("CCC", diverge.file); // diverge -> no change

cycle.check.execute();
converge.check.execute();
diverge.check.execute();
}

@Test
Expand Down

0 comments on commit c18a511

Please sign in to comment.