blob: 249126c68cb76189731f62af09e2b8de346d0a85 [file] [log] [blame]
/**
* All rights reserved by Loetz GmbH und CoKG Heidelberg 2015.
*
* Contributors:
* Florian Pirchner - initial API and implementation
*/
package org.eclipse.osbp.ecview.extension.model.tests;
import junit.textui.TestRunner;
import org.eclipse.osbp.ecview.extension.model.YCollectionSuspect;
import org.eclipse.osbp.ecview.extension.model.YECviewFactory;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>YCollection Suspect</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class YCollectionSuspectTest extends YTypedSuspectTest {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final String copyright = "All rights reserved by Loetz GmbH und CoKG Heidelberg 2015.\n\nContributors:\n Florian Pirchner - initial API and implementation";
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(YCollectionSuspectTest.class);
}
/**
* Constructs a new YCollection Suspect test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public YCollectionSuspectTest(String name) {
super(name);
}
/**
* Returns the fixture for this YCollection Suspect test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected YCollectionSuspect getFixture() {
return (YCollectionSuspect)fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(YECviewFactory.eINSTANCE.createYCollectionSuspect());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} //YCollectionSuspectTest