コード例 #1
0
 public void MoveLeftShouldMoveOneStepToLeftIfCurrentPositionIsNotStart()
 {
     _memory.MoveRight();
     _memory.MoveLeft();
     Assert.AreEqual(0, _memory.CursorPosition);
 }