summaryrefslogtreecommitdiffstats
path: root/sandbox/dougsleite/travelagency/src/test/java/test/TravelAgencyTestCase.java
diff options
context:
space:
mode:
authordougsleite <dougsleite@13f79535-47bb-0310-9956-ffa450edef68>2009-02-11 22:01:31 +0000
committerdougsleite <dougsleite@13f79535-47bb-0310-9956-ffa450edef68>2009-02-11 22:01:31 +0000
commit79a80b283203e116a6a2de50f4fb6cfc18a3d21e (patch)
tree4c5b2eff1776d467150ecb9048f9c8ea6d311b9d /sandbox/dougsleite/travelagency/src/test/java/test/TravelAgencyTestCase.java
parentea3155b9b56f79d629d154ba13aae9118ab35bfd (diff)
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@743527 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sandbox/dougsleite/travelagency/src/test/java/test/TravelAgencyTestCase.java53
1 files changed, 53 insertions, 0 deletions
diff --git a/sandbox/dougsleite/travelagency/src/test/java/test/TravelAgencyTestCase.java b/sandbox/dougsleite/travelagency/src/test/java/test/TravelAgencyTestCase.java
new file mode 100644
index 0000000000..119a5b3e93
--- /dev/null
+++ b/sandbox/dougsleite/travelagency/src/test/java/test/TravelAgencyTestCase.java
@@ -0,0 +1,53 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package test;
+
+import client.Client;
+import common.CreditCard;
+import java.util.GregorianCalendar;
+import junit.framework.TestCase;
+
+import org.apache.tuscany.sca.host.embedded.SCADomain;
+
+public class TravelAgencyTestCase extends TestCase {
+
+ private Client client;
+ private SCADomain domain;
+
+ protected void setUp() throws Exception {
+ domain = SCADomain.newInstance("travelagency.composite");
+
+ client = domain.getService(Client.class, "TravelAgencyComponent");
+ }
+
+ protected void tearDown() throws Exception {
+ domain.close();
+ }
+
+ public void test() throws Exception {
+
+ CreditCard card1 = new CreditCard("2765437907051286", 187, "John Smith",
+ new GregorianCalendar(2010, 02, 01));
+
+ Client.FlightData fData = new Client.FlightData(0000, card1);
+ Client.HotelData hData = new Client.HotelData(1, card1);
+
+ client.bookRequest(fData, hData);
+ }
+}