blob: 1be8c18a691625a73bb7299e5e17f6ce58446a25 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2018 IBM Corporation and others.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xml.xpath2.processor.testsuite.schema;
import junit.framework.Test;
import junit.framework.TestSuite;
public class AllW3CSchemaTests {
public static Test suite() {
TestSuite suite = new TestSuite(
"Test for org.eclipse.wst.xml.xpath2.processor.testsuite.schema");
//$JUnit-BEGIN$
suite.addTestSuite(UseCaseSGMLTest.class);
suite.addTestSuite(SeqExprCastSITest.class);
suite.addTestSuite(STAxesTest.class);
suite.addTestSuite(UseCaseSTRINGTest.class);
suite.addTestSuite(UseCaseNSTest.class);
suite.addTestSuite(UserDefinedSITest.class);
suite.addTestSuite(ancestorAxisTest.class);
suite.addTestSuite(UseCaseSEQTest.class);
suite.addTestSuite(followingSiblingAxisTest.class);
suite.addTestSuite(CatalogTest.class);
suite.addTestSuite(precedingSiblingAxisTest.class);
suite.addTestSuite(UseCaseTREETest.class);
suite.addTestSuite(NumericEqualSITest.class);
suite.addTestSuite(MiscFunctionsTest.class);
suite.addTestSuite(ancestorOrSelfAxisTest.class);
// XPath doesn't do validation only XQuery
// suite.addTestSuite(ValidateExpressionTest.class);
suite.addTestSuite(NotationEQSITest.class);
//$JUnit-END$
return suite;
}
}