blob: 32414390e31fdb9305d98f1e1d069407b919300a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2004 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xml.validation.tests.internal;
import junit.framework.Test;
/**
* The root test suite that contains all other XML validator test suites.
*
* @author Lawrence Mandel, IBM
*/
public class AllXMLTests extends junit.framework.TestSuite
{
/**
* Create this test suite.
*
* @return This test suite.
*/
public static Test suite()
{
return new AllXMLTests();
}
/**
* Constructor
*/
public AllXMLTests()
{
super("XMLTestsTestSuite");
addTest(XMLExamplesTest.suite());
addTest(BugFixesTest.suite());
addTest(PathsTest.suite());
}
}