blob: 4ab818208fe4ec7df40b3b3941c52225a0f8723a [file] [log] [blame]
/**
*/
package org.eclipse.osbp.ecview.core.common.model.validation.tests;
import junit.textui.TestRunner;
import org.eclipse.osbp.ecview.core.common.model.validation.ValidationFactory;
import org.eclipse.osbp.ecview.core.common.model.validation.YRegexpValidator;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>YRegexp Validator</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class YRegexpValidatorTest extends YValidatorTest {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(YRegexpValidatorTest.class);
}
/**
* Constructs a new YRegexp Validator test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public YRegexpValidatorTest(String name) {
super(name);
}
/**
* Returns the fixture for this YRegexp Validator test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected YRegexpValidator getFixture() {
return (YRegexpValidator)fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(ValidationFactory.eINSTANCE.createYRegexpValidator());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} //YRegexpValidatorTest