diff options
Diffstat (limited to '')
-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();
}
|