Remove duplicate functions to set Grid Cells

This commit is contained in:
Unknown 2018-10-23 20:21:02 +02:00
parent e840a3e580
commit c8e2417ab8
2 changed files with 8 additions and 19 deletions

View file

@ -50,4 +50,9 @@ void main() {
expect(sut.loadSnapshot(), isNot(equals(snapshot)));
});
}, tags: "nobrowser");
group("toggleCellState", () {
test("throws RangeError if outside the map bounds", () {
expect(() => sut.toggleCellState(10, 9), throwsRangeError);
}, tags: const ["nobrowser"]);
});
}