blob: 75adff2d87bf450b1fc1b429103f9d089a23d757 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 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.swt.tests.junit;
import junit.framework.JUnit4TestAdapter;
import junit.framework.Test;
import junit.textui.TestRunner;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
/**
* Suite for testing all of the graphics test cases.
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({ Test_org_eclipse_swt_graphics_Color.class,
Test_org_eclipse_swt_graphics_Cursor.class,
Test_org_eclipse_swt_graphics_DeviceData.class,
Test_org_eclipse_swt_graphics_Font.class,
Test_org_eclipse_swt_graphics_FontData.class,
Test_org_eclipse_swt_graphics_FontMetrics.class,
Test_org_eclipse_swt_graphics_GC.class,
Test_org_eclipse_swt_graphics_Image.class,
Test_org_eclipse_swt_graphics_ImageData.class,
Test_org_eclipse_swt_graphics_PaletteData.class,
Test_org_eclipse_swt_graphics_Point.class,
Test_org_eclipse_swt_graphics_Rectangle.class,
Test_org_eclipse_swt_graphics_Region.class,
Test_org_eclipse_swt_graphics_RGB.class,
Test_org_eclipse_swt_graphics_TextLayout.class,
Test_org_eclipse_swt_graphics_ImageLoader.class,
Test_org_eclipse_swt_graphics_ImageLoaderEvent.class })
public class AllGraphicsTests {
public static void main(String[] args) {
TestRunner.run(suite());
}
public static Test suite() {
return new JUnit4TestAdapter(AllGraphicsTests.class);
}
}