diff options
author | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-05-17 18:47:43 +0000 |
---|---|---|
committer | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-05-17 18:47:43 +0000 |
commit | 10b53d55fd284ba656ccf59309d3fe03b792dcae (patch) | |
tree | c000cd2b8e476cd2badb740a64e7e6e484ed9756 /sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-groovy/src | |
parent | 2d22a8be473cd85ec8389cb2e561eaa2e4bf8123 (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-groovy/src')
-rw-r--r-- | sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-groovy/src/test/java/scatours/payment/PaymentTestCase.java | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-groovy/src/test/java/scatours/payment/PaymentTestCase.java b/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-groovy/src/test/java/scatours/payment/PaymentTestCase.java index 1eb611e5b3..c96fddb6b3 100644 --- a/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-groovy/src/test/java/scatours/payment/PaymentTestCase.java +++ b/sca-java-1.x/branches/sca-java-travelsample-1.0/contributions/payment-groovy/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();
}
|