public void TurnCorrectlyWhenReachedRightSideInVerticalLeftPosition() { var shape = new TetriminoT(9); shape.Turn(); Call.Action(5, () => shape.MoveRight()); shape.Turn(); Check.That(shape).IsEquivalentTo((2, 12), (2, 11), (2, 10), (1, 11)); }
public void TurnCorrectlyWhenReachedLeftSideInVerticalRightPosition() { var shape = new TetriminoT(); Call.Action(3, () => shape.Turn()); Call.Action(2, () => shape.MoveLeft()); shape.Turn(); Check.That(shape).IsEquivalentTo((1, 1), (1, 2), (1, 3), (2, 2)); }
public void TurnFourTime() { var shape = new TetriminoT(); Call.Action(4, () => shape.Turn()); Check.That(shape).IsEquivalentTo((1, 1), (1, 2), (1, 3), (2, 2)); }
public void TurnThreeTime() { var shape = new TetriminoT(); Call.Action(3, () => shape.Turn()); Check.That(shape).IsEquivalentTo((3, 1), (2, 1), (1, 1), (2, 2)); }
public void TurnOneTime(int start, FakeShape expected) { var shape = new TetriminoT(start); shape.Turn(); Check.That(shape).IsEquivalentTo(expected); }
public void RemoveLineSeparated() { var bottomStack = new BottomStack(); var t1_1 = new TetriminoT(1); Call.Action(2, () => t1_1.Turn()); var t1_2 = new TetriminoT(4); Call.Action(2, () => t1_2.Turn()); var t1_3 = new TetriminoT(7); Call.Action(2, () => t1_3.Turn()); var o1_1 = new TetriminoO(10); var i3_1 = new TetriminoI(1); var i3_2 = new TetriminoI(5); var l3_1 = new TetriminoJ(9); Call.Action(2, () => l3_1.Turn()); var i4_1 = new TetriminoI(1); var i4_2 = new TetriminoI(5); var o4_1 = new TetriminoO(10); var lastBar = new TetriminoI(); bottomStack.PushBottom(t1_1); bottomStack.PushBottom(t1_2); bottomStack.PushBottom(t1_3); bottomStack.PushBottom(o1_1); bottomStack.PushBottom(i3_1); bottomStack.PushBottom(i3_2); bottomStack.PushBottom(l3_1); bottomStack.PushBottom(i4_1); bottomStack.PushBottom(i4_2); bottomStack.PushBottom(o4_1); lastBar.Turn(); Call.Action(12, () => lastBar.MoveRight()); bottomStack.PushBottom(lastBar); bottomStack.CompletedLineCount.Should().Be(3); bottomStack.RemoveCompletedLines(); bottomStack.Count().Should().Be(8); Check.That(bottomStack).IsEquivalentTo((24, 2), (24, 5), (24, 8), (24, 10), (24, 11), (24, 12), (23, 10), (23, 11)); }