/** Test of getDescription method, of class Baklavaci. */ @Test public void testGetDescription() { System.out.println("getDescription"); Baklavaci instance = new Baklavaci(); String expResult = "This is a totally fabulouuuus place"; String result = instance.getDescription(); 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 getExits method, of class Baklavaci. */ @Test public void testGetExits() { System.out.println("getExits"); Direction direction = null; Baklavaci instance = new Baklavaci(); List expResult = null; List result = instance.getExits(direction); assertEquals(expResult, result); // TODO review the generated test code and remove the default call to fail. // fail("The test case is a prototype."); }