summaryrefslogtreecommitdiffstats
path: root/java/sdo-cts/sdo2.1/src/main/java/test/sdo21/framework/junit3_8/CTSTestCase.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/sdo-cts/sdo2.1/src/main/java/test/sdo21/framework/junit3_8/CTSTestCase.java')
-rw-r--r--java/sdo-cts/sdo2.1/src/main/java/test/sdo21/framework/junit3_8/CTSTestCase.java62
1 files changed, 0 insertions, 62 deletions
diff --git a/java/sdo-cts/sdo2.1/src/main/java/test/sdo21/framework/junit3_8/CTSTestCase.java b/java/sdo-cts/sdo2.1/src/main/java/test/sdo21/framework/junit3_8/CTSTestCase.java
deleted file mode 100644
index c7d202b6b0..0000000000
--- a/java/sdo-cts/sdo2.1/src/main/java/test/sdo21/framework/junit3_8/CTSTestCase.java
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
- * 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();
- }
-
-}