summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/itest/wsdlgen/src/test/java/helloworld/HttpTransportTestCase.java
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-10-09 15:50:47 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-10-09 15:50:47 +0000
commit89cf22690e705fbdac45455d82f94be22b8704c4 (patch)
tree42178e33b449d2f6ddf90d50471f9032437a708f /branches/sca-java-1.x/itest/wsdlgen/src/test/java/helloworld/HttpTransportTestCase.java
parent4b08fe9f7f408dfc525a9bb1c4b87a599d378f27 (diff)
TUSCANY-3283 - update to match the latest changes from the 1.5.2 branch
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@823595 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--branches/sca-java-1.x/itest/wsdlgen/src/test/java/helloworld/HttpTransportTestCase.java23
1 files changed, 11 insertions, 12 deletions
diff --git a/branches/sca-java-1.x/itest/wsdlgen/src/test/java/helloworld/HttpTransportTestCase.java b/branches/sca-java-1.x/itest/wsdlgen/src/test/java/helloworld/HttpTransportTestCase.java
index c5c1d50bc1..22f154fbf3 100644
--- a/branches/sca-java-1.x/itest/wsdlgen/src/test/java/helloworld/HttpTransportTestCase.java
+++ b/branches/sca-java-1.x/itest/wsdlgen/src/test/java/helloworld/HttpTransportTestCase.java
@@ -50,6 +50,17 @@ public class HttpTransportTestCase{
scaDomain = SCADomain.newInstance("helloworld1.composite");
}
+ @Ignore
+ @Test
+ public void testWaitForInput() {
+ System.out.println("Press a key to end");
+ try {
+ System.in.read();
+ } catch (Exception ex) {
+ }
+ System.out.println("Shutting down");
+ }
+
@Test
public void testComponent1SCA() throws IOException {
HelloWorldService helloWorldService = scaDomain.getService(HelloWorldService.class, "HelloWorldServiceComponent1/HelloWorldService");
@@ -99,18 +110,6 @@ public class HttpTransportTestCase{
// repeat the JAXWS call with WSDL generated by tuscany
- }
-
-
- @Ignore
- @Test
- public void testWaitForInput() {
- System.out.println("Press a key to end");
- try {
- System.in.read();
- } catch (Exception ex) {
- }
- System.out.println("Shutting down");
}
@After