summaryrefslogtreecommitdiffstats
path: root/sdo-java/trunk-cts/sdo2.1/src/main/java/test/sdo21/framework/junit3_8/CTSTestCase.java
diff options
context:
space:
mode:
Diffstat (limited to 'sdo-java/trunk-cts/sdo2.1/src/main/java/test/sdo21/framework/junit3_8/CTSTestCase.java')
-rw-r--r--sdo-java/trunk-cts/sdo2.1/src/main/java/test/sdo21/framework/junit3_8/CTSTestCase.java62
1 files changed, 62 insertions, 0 deletions
diff --git a/sdo-java/trunk-cts/sdo2.1/src/main/java/test/sdo21/framework/junit3_8/CTSTestCase.java b/sdo-java/trunk-cts/sdo2.1/src/main/java/test/sdo21/framework/junit3_8/CTSTestCase.java
new file mode 100644
index 0000000000..c7d202b6b0
--- /dev/null
+++ b/sdo-java/trunk-cts/sdo2.1/src/main/java/test/sdo21/framework/junit3_8/CTSTestCase.java
@@ -0,0 +1,62 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ *
+ */
+package test.sdo21.framework.junit3_8;
+
+import test.sdo21.framework.TestHelper;
+import commonj.sdo.helper.HelperContext;
+
+import junit.framework.TestCase;
+
+public class CTSTestCase extends TestCase {
+
+ /*
+ * The CTS is designed to be invoked by arbitrary test harnesses but has affinity to junit.
+ * Some test classes are written in the junit 3.8 style where they must inherit from TestCase.
+ * Others are written in the 4.1 style. The pair of CTSTestCase superclasses support both these
+ * approaches. This class minimises duplication by delegating much function to the 4.1 style class.
+ */
+ test.sdo21.framework.CTSTestCase delegate;
+
+ public CTSTestCase(String title) {
+ super(title);
+ delegate = new test.sdo21.framework.CTSTestCase();
+ }
+
+ @Override
+ public void setUp() throws Exception {
+ super.setUp();
+ delegate.setUp();
+ }
+
+ @Override
+ public void tearDown() throws Exception {
+ delegate.tearDown();
+ super.tearDown();
+ }
+
+ public HelperContext getScope() {
+ return delegate.getScope();
+ }
+
+ public static TestHelper getTestHelper() {
+ return test.sdo21.framework.CTSTestCase.getTestHelper();
+ }
+
+}