/** Test of getDummyProject method, of class SerializationDemo. */
  @Test
  public void testGetDummyProject() {
    System.out.println("getDummyProject");
    Project expResult = null;
    Project result = SerializationDemo.getDummyProject();

    System.out.println(result);

    assertEquals(expResult, result);
    // TODO review the generated test code and remove the default call to fail.
    fail("The test case is a prototype.");
  }