blob: 0ef500dad4e15eef98b15e2136a492b1bf39fb25 [file] [log] [blame]
/*
* Copyright (c) 2005 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 - initial API and implementation
*
* $Id: UMLAllTests.java,v 1.1 2006/02/21 16:32:24 khussey Exp $
*/
package org.eclipse.uml2.uml.tests;
import junit.framework.Test;
import junit.framework.TestSuite;
import junit.textui.TestRunner;
/**
* <!-- begin-user-doc -->
* A test suite for the '<em><b>UML</b></em>' model.
* <!-- end-user-doc -->
* @generated
*/
public class UMLAllTests
extends TestSuite {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(suite());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static Test suite() {
TestSuite suite = new UMLAllTests("UML Tests"); //$NON-NLS-1$
suite.addTest(UMLTests.suite());
return suite;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public UMLAllTests(String name) {
super(name);
}
} //UMLAllTests