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