blob: 97c5c38bdaa2d21a5ba2e99af1c350138b86fe35 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 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.jface.tests.labelProviders;
import junit.framework.Test;
import junit.framework.TestSuite;
public class DecoratingLabelProviderTests extends TestSuite {
public static void main(String[] args) {
junit.textui.TestRunner.run(suite());
}
public static Test suite() {
return new DecoratingLabelProviderTests();
}
public DecoratingLabelProviderTests() {
addTestSuite(CompositeLabelProviderTableTest.class);
addTestSuite(DecoratingLabelProviderTreePathTest.class);
addTestSuite(DecoratingLabelProviderTreeTest.class);
addTestSuite(ColorAndFontLabelProviderTest.class);
addTestSuite(ColorAndFontViewerLabelProviderTest.class);
addTestSuite(DecoratingStyledCellLabelProviderTest.class);
addTestSuite(IDecorationContextTest.class);
}
}