package org.apache.testlet;

/**
 */
public class RepeatTestCase
    extends DecoratorTestCase
{
    private int m_repeat;

    public RepeatTestCase( final TestCase testCase, final int repeat )
    {
        this( null, testCase, repeat );
    }

    public RepeatTestCase( final String name, final TestCase testCase, final int repeat )
    {
        super( name, testCase );
        m_repeat = repeat;
    }

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