blob: f12cb2bbeb9b53e2b9ceffc4e9bfce5d16247880 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 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;
public class Validate500KBFileTestCase extends RunWSDLValidatorTestCase
{
protected String getFilePath()
{
return "data/500KB.wsdl";
}
public void testOpen500KBFile()
{
try
{
super.execute();
}
catch (Exception t)
{
fail(t.getMessage());
}
}
}