blob: 6746e9b98b347605e811bb96a3b553b092c8d697 [file] [log] [blame]
/*
* Copyright (c) 2007 Borland Software Corporation
*
* 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:
* Sergey Gribovsky (Borland) - initial API and implementation
*/
package org.eclipse.uml2.diagram.statemachine.tests;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.uml2.diagram.common.tests.FakeNonUITest;
public class AllNonUITests {
public static Test suite() {
TestSuite suite = new TestSuite("Test for org.eclipse.uml2.diagram.statemachine"); //$NON-NLS-1$
//$JUnit-BEGIN$
suite.addTestSuite(FakeNonUITest.class);
//$JUnit-END$
return suite;
}
}