diff options
author | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2008-12-17 14:43:22 +0000 |
---|---|---|
committer | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2008-12-17 14:43:22 +0000 |
commit | c3d941f9b99450fa1103452e98c3bbcf1a104302 (patch) | |
tree | 394785bcc4498f808752a7a6c67e4fef76d2082e /sandbox/travelsample/emailgateway-contribution/test/scatours | |
parent | e932b4b558015ee1e771321786666cf1b3be5361 (diff) |
Updates to payment process now that implementation.bpel can support multiple outgoing partner links
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@727401 13f79535-47bb-0310-9956-ffa450edef68
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)); } |