package org.apache.testlet;

/**
 */
public class RepeatTestCase
    implements TestCase
{
    private TestCase m_testCase;
    private int m_repeat;

    public RepeatTestCase( final TestCase testCase, final int repeat )
    {
        m_testCase = testCase;
        m_repeat = repeat;
    }

    public String getName()
    {
        return m_testCase.getName();
    }

    public void runTest()
        throws Throwable
    {
        for ( int i = 0; i < m_repeat; i++ )
        {
            m_testCase.runTest();
        }
    }
}
