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