summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-python
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-05-17 18:47:43 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-05-17 18:47:43 +0000
commit10b53d55fd284ba656ccf59309d3fe03b792dcae (patch)
treec000cd2b8e476cd2badb740a64e7e6e484ed9756 /sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-python
parent2d22a8be473cd85ec8389cb2e561eaa2e4bf8123 (diff)
Remove unused contribution creditcard-payment-jaxb from payment-groovy and payment-python scenarios
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@945303 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-python')
-rw-r--r--sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-python/src/test/java/scatours/payment/PaymentTestCase.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-python/src/test/java/scatours/payment/PaymentTestCase.java b/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-python/src/test/java/scatours/payment/PaymentTestCase.java
index f55f8c7c75..0b61db2bf8 100644
--- a/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-python/src/test/java/scatours/payment/PaymentTestCase.java
+++ b/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-python/src/test/java/scatours/payment/PaymentTestCase.java
@@ -35,18 +35,10 @@ import com.tuscanyscatours.payment.Payment;
public class PaymentTestCase {
private static SCANode paymentNode;
- private static SCANode creditCardNode;
private static SCANode emailGatewayNode;
@BeforeClass
public static void setUpBeforeClass() throws Exception {
- creditCardNode =
- SCANodeFactory.newInstance()
- .createSCANode("creditcard.composite",
- new SCAContribution("creditcard", "../creditcard-payment-jaxb/target/classes"));
-
- creditCardNode.start();
-
emailGatewayNode =
SCANodeFactory.newInstance().createSCANode("emailgateway.composite",
new SCAContribution("emailgateway",
@@ -79,7 +71,6 @@ public class PaymentTestCase {
@AfterClass
public static void tearDownAfterClass() throws Exception {
paymentNode.stop();
- creditCardNode.stop();
emailGatewayNode.stop();
}