Package org.emftrace.metamodel.QUARCModel.Constraints

Examples of org.emftrace.metamodel.QUARCModel.Constraints.BooleanTechnicalProperty


public class ConstraintValueValidatorTest extends QUARCCoreTestCase{

  @Test
  public void testBooleanTechnicalProperty() {
    BooleanTechnicalProperty property = ConstraintsFactory.eINSTANCE.createBooleanTechnicalProperty();
   
    assertNull(ConstraintValueValidator.validateValue("true",property));
    assertNull(ConstraintValueValidator.validateValue("false",property));
    assertNotNull(ConstraintValueValidator.validateValue("falsetrue",property));
    assertNotNull(ConstraintValueValidator.validateValue("foo",property));
View Full Code Here

TOP

Related Classes of org.emftrace.metamodel.QUARCModel.Constraints.BooleanTechnicalProperty

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.