blob: 85e2eb99ac7fec1f69156df92eced1c642d893be [file] [log] [blame]
package org.eclipse.wst.wsdl.tests.performance.scalability;
import org.eclipse.wst.common.tests.performance.internal.scalability.RepeatRunValidatorTestCase;
public class RepeatValidatex25TestCase extends RepeatRunValidatorTestCase
{
protected int getRepeatCount()
{
return 25;
}
protected String getValidatorId()
{
return "org.eclipse.wst.wsdl.ui.internal.validation.Validator";
}
protected String getBundleId()
{
return "org.eclipse.wst.wsdl.tests.performance";
}
protected String getFilePath()
{
return "data/100KB.wsdl";
}
public void testValidatex25()
{
try
{
super.execute();
}
catch (Throwable t)
{
fail(t.getMessage());
}
}
}