Assert.assertEquals(1, pos.getY());
}
@Test
public void testMoveRightIntoUnblockedCellActuallyMovesUpWhenProbabilityBetween80And90Percent() {
CellWorldPosition pos = cw.moveProbabilisticallyFrom(1, 1,
CellWorld.RIGHT, betweenEightyAndNinetyPercent);
Assert.assertEquals(2, pos.getX());
Assert.assertEquals(1, pos.getY());
}