blob: 00528cdfd371ff59aacda8e50155871c24170f0c [file] [log] [blame]
/**
* Copyright (c) 2009, 2019 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Gregoire DUPE (Mia-Software) - initial API and implementation
*/
package org.eclipse.modisco.infra.facet.tests.emf;
import junit.framework.Test;
import junit.framework.TestSuite;
import junit.textui.TestRunner;
/**
* <!-- begin-user-doc -->
* A test suite for the '<em><b>facet</b></em>' package.
* <!-- end-user-doc -->
* @generated
*/
public class FacetTests 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 FacetTests("facet Tests"); //$NON-NLS-1$
suite.addTestSuite(FacetTest.class);
suite.addTestSuite(FacetAttributeTest.class);
suite.addTestSuite(FacetReferenceTest.class);
suite.addTestSuite(FacetSetTest.class);
suite.addTestSuite(ShortcutTest.class);
return suite;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public FacetTests(String name) {
super(name);
}
} //FacetTests