blob: 79024459e3e7a38abee34ca2b383353e71564b17 [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.wtptypes.test;
import junit.framework.Test;
import junit.framework.TestSuite;
public class AllXPath2TestsForWTP {
public static Test suite() {
TestSuite suite = new TestSuite(
"Test for org.eclipse.wst.xml.xpath2.wtptypes.test");
//$JUnit-BEGIN$
suite.addTestSuite(TestWTPDOMXPath2.class);
//$JUnit-END$
return suite;
}
}