public void should_send_email_using_java_mail_api() throws Exception {
final EmailMessage email = (EmailMessage) new EmailMessage().from(
"root@gc.org").to("john@doe.com").withSubject("Testing")
.withBody("FluentMailAPI");
final PostalService postalService = context.mock(PostalService.class);
EmailMessage.setPostalService(postalService);
context.checking(new Expectations() {
{