summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-05-15 22:40:18 +0000
committerrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-05-15 22:40:18 +0000
commitde30467590c8763457292b72d88c452ddfce6a21 (patch)
tree231ed596dc38925492847203fa5b45e370702a47
parente880dcec749f93ee1000fc614ee2fc2b6ca08d40 (diff)
Convert it to JUNIT4
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@775372 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--java/sca/itest/callback-complex-type/src/test/java/org/apache/tuscany/sca/test/CallBackCTypeTestCase.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/java/sca/itest/callback-complex-type/src/test/java/org/apache/tuscany/sca/test/CallBackCTypeTestCase.java b/java/sca/itest/callback-complex-type/src/test/java/org/apache/tuscany/sca/test/CallBackCTypeTestCase.java
index ce3e6d2d17..dde489d766 100644
--- a/java/sca/itest/callback-complex-type/src/test/java/org/apache/tuscany/sca/test/CallBackCTypeTestCase.java
+++ b/java/sca/itest/callback-complex-type/src/test/java/org/apache/tuscany/sca/test/CallBackCTypeTestCase.java
@@ -18,21 +18,20 @@
*/
package org.apache.tuscany.sca.test;
-import junit.framework.TestCase;
-
import org.apache.tuscany.sca.node.Contribution;
import org.apache.tuscany.sca.node.ContributionLocationHelper;
import org.apache.tuscany.sca.node.Node;
import org.apache.tuscany.sca.node.NodeFactory;
import org.junit.After;
import org.junit.Before;
+import org.junit.Test;
-//FIXME Fix this test case
-public class CallBackCTypeTestCase extends TestCase {
+public class CallBackCTypeTestCase {
private Node node;
private CallBackCTypeClient aCallBackClient;
+ @Test
public void testCallBackBasic() {
aCallBackClient.run();
}