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