blob: 154822a3c6bd8af923b5303899c32a0a73445483 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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.ui.tests.forms;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.ui.tests.forms.layout.AllLayoutTests;
import org.eclipse.ui.tests.forms.util.AllUtilityTests;
/*
* Tests all cheat sheet functionality (automated).
*/
public class AllFormsTests extends TestSuite {
/*
* Returns the entire test suite.
*/
public static Test suite() {
return new AllFormsTests();
}
/*
* Constructs a new test suite.
*/
public AllFormsTests() {
addTest(AllLayoutTests.suite());
addTest(AllUtilityTests.suite());
}
}