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