summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/tutorials/store
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-03-27 14:21:16 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-03-27 14:21:16 +0000
commit83be33d982055e2f86a97270dd400f01fb9cb928 (patch)
treedc851920b2479f850cf341beb8b91829b6627795 /branches/sca-java-1.x/tutorials/store
parent2a250a3a8278290af0505253acdffbc8c68bce2f (diff)
TUSCANY-2944 don't raise NPE if the component type model cannot be determined
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@759149 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-java-1.x/tutorials/store')
-rw-r--r--branches/sca-java-1.x/tutorials/store/store-test/test/StoreSupplierTestCase.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/branches/sca-java-1.x/tutorials/store/store-test/test/StoreSupplierTestCase.java b/branches/sca-java-1.x/tutorials/store/store-test/test/StoreSupplierTestCase.java
index 588c014fdf..69590ee80e 100644
--- a/branches/sca-java-1.x/tutorials/store/store-test/test/StoreSupplierTestCase.java
+++ b/branches/sca-java-1.x/tutorials/store/store-test/test/StoreSupplierTestCase.java
@@ -19,6 +19,8 @@
package test;
+import java.io.IOException;
+
import junit.framework.Assert;
import junit.framework.TestCase;
@@ -28,6 +30,7 @@ import org.apache.tuscany.sca.node.launcher.DomainManagerLauncher;
import org.apache.tuscany.sca.node.launcher.NodeLauncher;
import org.junit.After;
import org.junit.Before;
+import org.junit.Ignore;
import org.junit.Test;
import org.junit.Ignore;
@@ -76,6 +79,18 @@ public class StoreSupplierTestCase {
domainManager.stop();
}
+/*
+ @Test
+ public void testWaitForInput() {
+ try {
+ System.out.println("press enter to continue)");
+ System.in.read();
+ } catch (IOException e) {
+ e.printStackTrace();
+ }
+ }
+*/
+
@Test
public void testShop() {
SCAClient client = (SCAClient)storeClientNode;