/** Test of InsertPawnRecord method, of class PawnHandler. */
 @Test
 public void testInsertPawnRecord() {
   System.out.println("InsertPawnRecord");
   int id = 0;
   String description = "";
   double weight = 0.0;
   double assess_value = 0.0;
   boolean availability = false;
   PawnHandler instance = new PawnHandler();
   boolean expResult = false;
   boolean result = instance.InsertPawnRecord(id, description, weight, assess_value, availability);
   assertEquals(expResult, result);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }