@Test(expected = BoundaryException.class) public void testDecrementRankByBoundaryException() throws Exception { board.decrementRankBy(1, 3); }
@Test public void testDecrementRankBy() throws Exception { assertEquals(Integer.valueOf(4), board.decrementRankBy(7, 3)); }