/** Test of getMaxPawnID method, of class PawnHandler. */
 @Test
 public void testGetMaxPawnID() {
   System.out.println("getMaxPawnID");
   PawnHandler instance = new PawnHandler();
   int expResult = 0;
   int result = instance.getMaxPawnID();
   assertEquals(expResult, result);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }