diff options
Diffstat (limited to 'sandbox/travelsample/emailgateway-contribution/test/scatours')
-rw-r--r-- | sandbox/travelsample/emailgateway-contribution/test/scatours/emailgateway/EmailGatewayTestCase.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sandbox/travelsample/emailgateway-contribution/test/scatours/emailgateway/EmailGatewayTestCase.java b/sandbox/travelsample/emailgateway-contribution/test/scatours/emailgateway/EmailGatewayTestCase.java index 7445aa41c3..7b6760954e 100644 --- a/sandbox/travelsample/emailgateway-contribution/test/scatours/emailgateway/EmailGatewayTestCase.java +++ b/sandbox/travelsample/emailgateway-contribution/test/scatours/emailgateway/EmailGatewayTestCase.java @@ -48,6 +48,9 @@ public class EmailGatewayTestCase { EmailGateway cc = client.getService(EmailGateway.class, "EmailGatewayClient"); ObjectFactory objectFactory = new ObjectFactory(); EmailType email = objectFactory.createEmailType(); + email.setTo("Fred"); + email.setTitle("An email"); + email.setBody("A message"); System.out.println(cc.sendEmail(email)); } |