Shorten toggleCell Function Name
This commit is contained in:
parent
2e7fd7c3d3
commit
e40dddde52
2 changed files with 4 additions and 4 deletions
|
@ -72,7 +72,7 @@ class Simulation {
|
||||||
return math.Point<int>(cx.toInt(), cy.toInt());
|
return math.Point<int>(cx.toInt(), cy.toInt());
|
||||||
}
|
}
|
||||||
|
|
||||||
void toggleCellState(int x, int y) {
|
void toggleCell(int x, int y) {
|
||||||
map.set(x, y, !map.get(x, y));
|
map.set(x, y, !map.get(x, y));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -52,16 +52,16 @@ void main() {
|
||||||
}, tags: "nobrowser");
|
}, tags: "nobrowser");
|
||||||
group("toggleCellState", () {
|
group("toggleCellState", () {
|
||||||
test("throws RangeError if outside the map bounds", () {
|
test("throws RangeError if outside the map bounds", () {
|
||||||
expect(() => sut.toggleCellState(10, 9), throwsRangeError);
|
expect(() => sut.toggleCell(10, 9), throwsRangeError);
|
||||||
}, tags: const ["nobrowser"]);
|
}, tags: const ["nobrowser"]);
|
||||||
test("sets the cell to false if currently true", () {
|
test("sets the cell to false if currently true", () {
|
||||||
sut.map.set(1, 1, true);
|
sut.map.set(1, 1, true);
|
||||||
sut.toggleCellState(1, 1);
|
sut.toggleCell(1, 1);
|
||||||
expect(sut.map.get(1, 1), false);
|
expect(sut.map.get(1, 1), false);
|
||||||
}, tags: const ["nobrowser"]);
|
}, tags: const ["nobrowser"]);
|
||||||
test("sets the cell to true if currently false", () {
|
test("sets the cell to true if currently false", () {
|
||||||
sut.map.set(1, 1, false);
|
sut.map.set(1, 1, false);
|
||||||
sut.toggleCellState(1, 1);
|
sut.toggleCell(1, 1);
|
||||||
expect(sut.map.get(1, 1), true);
|
expect(sut.map.get(1, 1), true);
|
||||||
}, tags: const ["nobrowser"]);
|
}, tags: const ["nobrowser"]);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue