blob: 553df2f4f736d5c3881d4e8daae3a053f82deaf7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 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.stem.tests.grapheditor;
import junit.framework.Test;
import junit.framework.TestSuite;
import junit.textui.TestRunner;
/**
* Test suite for Graph Editor tests
*
*/
public class GraphEditorAllTests extends TestSuite
{
public static void main(String[] args) {
TestRunner.run(suite());
}
public static Test suite() {
TestSuite suite = new GraphEditorAllTests("Graph Editor Tests");
suite.addTestSuite(GraphCanvasTest.class);
return suite;
}
public GraphEditorAllTests(String name) {
super(name);
}
}