blob: fb28c9bae4726b7734e1ffb22f6f4267c6e150bb [file] [log] [blame]
package org.eclipse.wst.wsdl.tests.performance.scalability;
import org.eclipse.wst.common.tests.performance.internal.scalability.RunValidatorTestCase;
public class Validate500KBFileTestCase extends RunValidatorTestCase
{
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/500KB.wsdl";
}
public void testOpen500KBFile()
{
try
{
super.execute();
}
catch (Throwable t)
{
fail(t.getMessage());
}
}
}