blob: dfcb5c71876b9eca2e48ae1e5ad6e9a2977000e1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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.sse.unittests;
import junit.framework.TestSuite;
import org.eclipse.jst.jsp.core.tests.JSPCoreTestSuite;
import org.eclipse.jst.jsp.tests.encoding.JSPEncodingTestSuite;
import org.eclipse.jst.jsp.ui.tests.JSPUITestSuite;
import org.eclipse.wst.css.core.tests.CSSCoreTestSuite;
import org.eclipse.wst.css.tests.encoding.CSSEncodingTestSuite;
import org.eclipse.wst.html.core.tests.HTMLCoreTestSuite;
import org.eclipse.wst.html.tests.encoding.HTMLEncodingTestSuite;
import org.eclipse.wst.html.ui.tests.HTMLUITestSuite;
import org.eclipse.wst.sse.core.tests.SSEModelTestSuite;
import org.eclipse.wst.sse.ui.tests.SSEUITestSuite;
import org.eclipse.wst.xml.core.tests.SSEModelXMLTestSuite;
import org.eclipse.wst.xml.tests.encoding.EncodingTestSuite;
import org.eclipse.wst.xml.ui.tests.XMLUITestSuite;
import org.eclipse.wst.xml.validation.tests.internal.AllXMLTests;
/*****************************************************************************
* Copyright (c) 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
*
****************************************************************************/
public class MasterListTestSuite extends TestSuite {
public MasterListTestSuite() {
super("All Tests");
addTest(SSEModelTestSuite.suite());
addTest(SSEModelXMLTestSuite.suite());
addTest(CSSCoreTestSuite.suite());
addTest(HTMLCoreTestSuite.suite());
addTest(JSPCoreTestSuite.suite());
//addTest(AllXMLTests.suite());
addTest(EncodingTestSuite.suite());
addTest(CSSEncodingTestSuite.suite());
addTest(HTMLEncodingTestSuite.suite());
addTest(JSPEncodingTestSuite.suite());
addTest(HTMLUITestSuite.suite());
addTest(SSEUITestSuite.suite());
addTest(XMLUITestSuite.suite());
addTest(JSPUITestSuite.suite());
}
public void testAll() {
// this method needs to exist, but doesn't really do anything
}
}