blob: 43eeb9a2fa41979275915af87de42d4720de062d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2009 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.ua.tests.intro;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.ua.tests.intro.anchors.ExtensionReorderingTest;
import org.eclipse.ua.tests.intro.contentdetect.ContentDetectorTest;
import org.eclipse.ua.tests.intro.other.AllOtherTests;
import org.eclipse.ua.tests.intro.parser.AllParserTests;
/*
* Tests all intro (welcome) functionality (automated).
*/
public class AllIntroTests extends TestSuite {
/*
* Returns the entire test suite.
*/
public static Test suite() {
return new AllIntroTests();
}
/*
* Constructs a new test suite.
*/
public AllIntroTests() {
addTest(AllParserTests.suite());
addTestSuite(ContentDetectorTest.class);
addTestSuite(ExtensionReorderingTest.class);
addTest(AllOtherTests.suite());
}
}