blob: d2117c3f7258f079a8544c2d473dde6c411a748d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 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 v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* 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;
}
}