summaryrefslogtreecommitdiffstats
path: root/java/sca/stest/sampleTest/src/test/java/client/ASM_0021_TestCase.java
diff options
context:
space:
mode:
authorrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-03-05 06:03:09 +0000
committerrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-03-05 06:03:09 +0000
commit80fda303e635f8f72f4858daff9a3be7bae00350 (patch)
treee3126d34f046e46c559a844c748ae380f732e618 /java/sca/stest/sampleTest/src/test/java/client/ASM_0021_TestCase.java
parent24e47ab8a07550ee60a45a529fed60f4d96f2b03 (diff)
Organize imports and format code
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@750325 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--java/sca/stest/sampleTest/src/test/java/client/ASM_0021_TestCase.java22
1 files changed, 10 insertions, 12 deletions
diff --git a/java/sca/stest/sampleTest/src/test/java/client/ASM_0021_TestCase.java b/java/sca/stest/sampleTest/src/test/java/client/ASM_0021_TestCase.java
index 4397a564c8..286533a9ee 100644
--- a/java/sca/stest/sampleTest/src/test/java/client/ASM_0021_TestCase.java
+++ b/java/sca/stest/sampleTest/src/test/java/client/ASM_0021_TestCase.java
@@ -18,7 +18,6 @@
*/
package client;
-
import test.ASM_0002_Client;
import testClient.TestInvocation;
@@ -31,17 +30,16 @@ import testClient.TestInvocation;
*/
public class ASM_0021_TestCase extends BaseJAXWSTestCase {
-
protected TestConfiguration getTestConfiguration() {
- TestConfiguration config = new TestConfiguration();
- config.testName = "ASM_0021";
- config.input = "request";
- config.output = "ASM_0021 request service1 operation1 invoked service3 operation1 invoked";
- config.composite = "Test_ASM_0021.composite";
- config.testServiceName = "TestClient";
- config.testClass = ASM_0002_Client.class;
- config.serviceInterface = TestInvocation.class;
- return config;
+ TestConfiguration config = new TestConfiguration();
+ config.testName = "ASM_0021";
+ config.input = "request";
+ config.output = "ASM_0021 request service1 operation1 invoked service3 operation1 invoked";
+ config.composite = "Test_ASM_0021.composite";
+ config.testServiceName = "TestClient";
+ config.testClass = ASM_0002_Client.class;
+ config.serviceInterface = TestInvocation.class;
+ return config;
}
-
+
} // end class Test_ASM_0003