Exemplo n.º 1
0
 /** Test of visit method, of class Visitor. */
 @Test
 public void testVisit_Story() {
   System.out.println("visit");
   Story story = null;
   Visitor instance = new VisitorImpl();
   instance.visit(story);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }