blob: ffb64a02e1c01016ae58c85beec63f17e23b92ce [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved.   This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
 *
* Contributors:
* IBM - Initial API and implementation
**********************************************************************/
package org.eclipse.wst.wsdl.tests.performance;
import junit.framework.Test;
import junit.framework.TestSuite;
public class AllTests
{
public static Test suite()
{
TestSuite suite = new TestSuite("Test for org.eclipse.wst.wsdl.tests.performance");
//$JUnit-BEGIN$
suite.addTestSuite(ReadStockQuoteWSDLTestCase.class);
suite.addTestSuite(ReadStockQuoteWSDLEMFTestCase.class);
suite.addTestSuite(ValidateStockQuoteWSDLTestCase.class);
suite.addTestSuite(ValidateStockQuoteWSITestCase.class);
suite.addTestSuite(OpenStockQuoteWSDLSetup.class);
suite.addTestSuite(OpenStockQuoteWSDLTestCase.class);
//$JUnit-END$
return suite;
}
}