blob: 9128369bc55bac8f8bd5e52547b48b1fdb0c4172 [file] [log] [blame]
package org.eclipse.wst.wsdl.tests.performance.scalability;
import org.eclipse.wst.common.tests.performance.internal.scalability.RepeatRunValidatorTestCase;
public class RepeatValidatex1TestCase extends RepeatRunValidatorTestCase
{
protected int getRepeatCount()
{
return 1;
}
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 testValidatex1()
{
try
{
super.execute();
}
catch (Throwable t)
{
fail(t.getMessage());
}
}
}