blob: acff09af1787842b357e7067ae650b72d2f9d5af [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2015 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 org.junit.runner.JUnitCore;
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_RGBA.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) {
JUnitCore.main(AllGraphicsTests.class.getName());
}
}