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