diff options
author | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2009-09-14 08:41:45 +0000 |
---|---|---|
committer | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2009-09-14 08:41:45 +0000 |
commit | 573f79b1c2006b95327af483d523332eee8c84d3 (patch) | |
tree | f90e4b968a300050101e898ce29422a14cdc3397 /branches/sca-java-1.5.1/tutorials | |
parent | 73fe366d9a47b78ede21e02c52faad59f75ac3dd (diff) |
save some debugging aids
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@814523 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-java-1.5.1/tutorials')
-rw-r--r-- | branches/sca-java-1.5.1/tutorials/store/store-test/test/StoreSupplierTestCase.java | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/branches/sca-java-1.5.1/tutorials/store/store-test/test/StoreSupplierTestCase.java b/branches/sca-java-1.5.1/tutorials/store/store-test/test/StoreSupplierTestCase.java index 556cc42d0b..9cea47fbc8 100644 --- a/branches/sca-java-1.5.1/tutorials/store/store-test/test/StoreSupplierTestCase.java +++ b/branches/sca-java-1.5.1/tutorials/store/store-test/test/StoreSupplierTestCase.java @@ -58,6 +58,15 @@ public class StoreSupplierTestCase { domainManager = managerLauncher.createDomainManager(domainDir); domainManager.start(); + /* helpful for debugging + try { + System.out.println("press enter to continue)"); + System.in.read(); + } catch (IOException e) { + e.printStackTrace(); + } + */ + NodeLauncher nodeLauncher = NodeLauncher.newInstance(); storeSupplierNode = nodeLauncher.createNodeFromURL("http://localhost:9990/node-config/StoreSupplierNode"); storeSupplierNode.start(); @@ -78,8 +87,9 @@ public class StoreSupplierTestCase { domainManager.stop(); } -/* + @Test + @Ignore public void testWaitForInput() { try { System.out.println("press enter to continue)"); @@ -88,7 +98,7 @@ public class StoreSupplierTestCase { e.printStackTrace(); } } -*/ + @Test public void testShop() { |