/** Test of toString method, of class SerializationDemo. */
 @Ignore
 @Test
 public void testToString() {
   System.out.println("toString");
   Project project = null;
   String expResult = "";
   String result = SerializationDemo.toString(project);
   assertEquals(expResult, result);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }