blob: 46b46061e47836f310ecb91ad5568cc1aeff8e71 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Shane Clarke.
* 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:
* Shane Clarke - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.ws.jaxws.core.annotation.validation.tests;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
*
* @author sclarke
*
*/
public class JAXWSAnnotationValidationTestSuite extends TestSuite {
public static Test suite() {
return new JAXWSAnnotationValidationTestSuite();
}
public JAXWSAnnotationValidationTestSuite() {
super("JAX-WS Annotation Validation Tests");
addTestSuite(OnewayNoReturnValueRuleTest.class);
addTestSuite(SOAPBindingMethodStyleDocumentRuleTest.class);
addTestSuite(SOAPBindingMethodUseRuleTest.class);
addTestSuite(WebMethodCheckForWebServiceRuleTest.class);
addTestSuite(WebMethodExcludeRuleOnSEITest.class);
addTestSuite(WebMethodExcludeRuleOnImplTest.class);
addTestSuite(WebMethodNoPackagePrivateMethodRuleTest.class);
addTestSuite(WebMethodNoPrivateMethodRuleTest.class);
addTestSuite(WebMethodNoProtectedMethodRuleTest.class);
addTestSuite(WebMethodNoFinalModifierRuleTest.class);
addTestSuite(WebMethodNoStaticModifierRuleTest.class);
addTestSuite(WebServiceDefaultPublicConstructorRuleTest.class);
addTestSuite(WebServiceNoFinalizeMethodRuleTest.class);
addTestSuite(WebServiceNoFinalModiferRuleTest.class);
addTestSuite(WebServiceNoAbstractModifierRuleTest.class);
addTestSuite(WebServiceSEINoServiceNameRuleTest.class);
addTestSuite(WebServiceSEINoEndpointInterfaceRuleTest.class);
addTestSuite(WebServiceSEINoPortNameRuleTest.class);
addTestSuite(WebServiceSEIPresentNoWebMethodRuleTest.class);
addTestSuite(WebServiceWebServiceProviderCoExistRuleTest.class);
}
}