blob: 20bf807da7c0ef1bbd41f3e5f7be593984574b86 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 2008 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.help.toc;
import junit.framework.Test;
import junit.framework.TestSuite;
/*
* Tests help table of contents functionality.
*/
public class AllTocTests extends TestSuite {
/*
* Returns the entire test suite.
*/
public static Test suite() {
return new AllTocTests();
}
/*
* Constructs a new test suite.
*/
public AllTocTests() {
addTest(TocAssemblerTest.suite());
addTest(EnabledTopicTest.suite());
addTest(TocLinkChecker.suite());
addTestSuite(TopicFinderTest.class);
addTestSuite(TocSortingTest.class);
addTestSuite(TocIconTest.class);
addTestSuite(HelpData.class);
}
}