/** Test of getContact method, of class PublicContacts. */
 @Test
 public void testGetContact() throws Exception {
   System.out.println("getContact");
   int id = 0;
   PublicContacts instance = new PublicContacts();
   PublicContactsVO expResult = null;
   PublicContactsVO result = instance.getContact(id);
   assertEquals(expResult, result);
   // TODO review the generated test code and remove the default call to fail.
   // fail("The test case is a prototype.");
 }