blob: 9ac96e9ccfbcd5f8c76a13457e9e25a5853b664c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2017 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xsd.ui.tests.internal;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Wrapper test suite for all XSD UI tests.
*/
public class AllXSDUITests extends TestSuite
{
/**
* Create this test suite.
*
* @return This test suite.
*/
public static Test suite()
{
return new AllXSDUITests();
}
/**
* Constructor
*/
public AllXSDUITests()
{
super("AllXSDUITests");
// XSD Includes tests
addTest(ChameleonIncludesTest.suite());
// Testing used imports aren't removed (ensure logic to determine
// what is or what is not used is correct)
addTest(ImportsTest.suite());
// Unused XSD imports tests
addTest(XSDUnusedTests.suite());
// XSD xml ns table cleanup
addTest(XSDXMLNSCleanupTests.suite());
}
}