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