blob: 1fc54d8da5eb313c990fa9c524e6bae91202d67a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.wsdl.tests.performance.scalability;
import org.eclipse.wst.common.tests.performance.internal.scalability.RepeatRunValidatorTestCase;
import org.eclipse.wst.wsdl.tests.performance.PerformancePlugin;
public abstract class RepeatRunWSDLValidatorTestCase extends RepeatRunValidatorTestCase
{
protected String getValidatorId()
{
return PerformancePlugin.WSDL_VALIDATOR_ID;
}
protected String getBundleId()
{
return PerformancePlugin.BUNDLE_ID;
}
protected String getFilePath()
{
return "data/100KB.wsdl";
}
}