Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d1b6ec515f9f6754b32a64fbe3d56a1e143061e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*******************************************************************************
 * Copyright (c) 2005 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;

import junit.framework.Test;
import junit.framework.TestSuite;

import org.eclipse.ua.tests.cheatsheet.AllCheatSheetTests;
import org.eclipse.ua.tests.intro.AllIntroTests;

/*
 * Tests all user assistance functionality (automated).
 */
public class AllTests extends TestSuite {

	/*
	 * Returns the entire test suite.
	 */
	public static Test suite() {
		return new AllTests();
	}

	/*
	 * Constructs a new test suite.
	 */
	public AllTests() {
		addTest(AllCheatSheetTests.suite());
		addTest(AllIntroTests.suite());
	}
}

Back to the top