예제 #1
0
 @Test
 public void applyValue_expect_valueSet() {
   target = target.applyValue(0, Cell.EMPTY);
   Assert.assertSame(Cell.EMPTY, target.getValue(0));
 }
예제 #2
0
 @Test
 public void applyValue_expect_returnsNewRowColumn() {
   Assert.assertNotSame(target.applyValue(0, Cell.EMPTY), target);
 }