blob: a88f4f4fe921a1f7dc0d2ec7b67792c4bba649d5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2017 Standards for Technology in Automotive Retail and others.
* All rights reserved. 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:
* David Carver - initial API and implementation
* Mukul Ghandi - bug 273719
* Jesper Moller - bug 281028 - Added test suites for min/max/sum/avg
*******************************************************************************/
package org.eclipse.wst.xml.xpath2.processor.test;
import junit.framework.Test;
import junit.framework.TestSuite;
public class AllPsychoPathTests {
public static Test suite() {
TestSuite suite = new TestSuite(
"Test for org.eclipse.wst.xml.xpath2.processor.test");
//$JUnit-BEGIN$
suite.addTestSuite(TestXPath20.class);
suite.addTestSuite(Bug269833.class);
suite.addTest(AllW3CXPath20Tests.suite());
suite.addTest(AllW3CFunctionTests.suite());
suite.addTest(AllW3CSchemaTests.suite());
suite.addTest(AllW3CDateTests.suite());
suite.addTestSuite(TestBugs.class);
suite.addTestSuite(TestMinMax.class);
suite.addTestSuite(TestSumAvg.class);
suite.addTestSuite(XPathDecimalFormatTest.class);
suite.addTestSuite(LiteralUtilsTest.class);
suite.addTestSuite(KindTestSITest.class);
suite.addTestSuite(StaticContextAdapterTest.class);
//$JUnit-END$
return suite;
}
}