summaryrefslogtreecommitdiff
path: root/connectivity/qa/complex/connectivity/SubTestCase.java
blob: 1c2e685c5943c2f98afcb059c269623d9bec6362 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package complex.connectivity;

import share.LogWriter;

public class SubTestCase implements TestCase
{
    protected SubTestCase( final TestCase i_parentTestCase )
    {
        m_parentTestCase = i_parentTestCase;
    }

    public void assure( String i_message, boolean i_condition )
    {
        m_parentTestCase.assure( i_message, i_condition );
    }

    public LogWriter getLog()
    {
        return m_parentTestCase.getLog();
    }

    private final TestCase m_parentTestCase;
}