summaryrefslogtreecommitdiffstats
path: root/sdo-java/trunk-cts/sdo2.1/src/main/java/test/sdo21/framework/junit3_8/CTSTestCase.java
blob: c7d202b6b05573c5341258bf2edf1eaee3d64175 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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();
  }

}