/** Test of advanceOneDay method, of class Circulation. */
 @Test
 public void testAdvanceOneDay() {
   System.out.println("advanceOneDay");
   Circulation instance = new Circulation();
   instance.advanceOneDay();
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }
 /** Test of setBookFileName method, of class Circulation. */
 @Test
 public void testSetBookFileName() {
   System.out.println("setBookFileName");
   String file = "";
   Circulation instance = new Circulation();
   instance.setBookFileName(file);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }
 /** Test of listOverdueBooks method, of class Circulation. */
 @Test
 public void testListOverdueBooks() {
   System.out.println("listOverdueBooks");
   Circulation instance = new Circulation();
   List expResult = null;
   List result = instance.listOverdueBooks();
   assertEquals(expResult, result);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }
 /** Test of checkIn method, of class Circulation. */
 @Test
 public void testCheckIn() {
   System.out.println("checkIn");
   String bTitle = "";
   String pName = "";
   Circulation instance = new Circulation();
   instance.checkIn(bTitle, pName);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }
 /** Test of printCurrentDate method, of class Circulation. */
 @Test
 public void testPrintCurrentDate() {
   System.out.println("printCurrentDate");
   Circulation instance = new Circulation();
   String expResult = "";
   String result = instance.printCurrentDate();
   assertEquals(expResult, result);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }
 /** Test of listCheckedOutByPatron method, of class Circulation. */
 @Test
 public void testListCheckedOutByPatron() {
   System.out.println("listCheckedOutByPatron");
   String pName = "";
   Circulation instance = new Circulation();
   List expResult = null;
   List result = instance.listCheckedOutByPatron(pName);
   assertEquals(expResult, result);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }