@Test
public void testIntegerTechnicalProperty() {
IntegerTechnicalProperty property = ConstraintsFactory.eINSTANCE.createIntegerTechnicalProperty();
assertNull(ConstraintValueValidator.validateValue("1",property));
assertNull(ConstraintValueValidator.validateValue("-1",property));
assertNotNull(ConstraintValueValidator.validateValue("1.1",property));
assertNotNull(ConstraintValueValidator.validateValue("-1.1",property));
assertNotNull(ConstraintValueValidator.validateValue("-0.1",property));
assertNotNull(ConstraintValueValidator.validateValue("0.1",property));
assertNotNull(ConstraintValueValidator.validateValue("0.0.0",property));
assertNotNull(ConstraintValueValidator.validateValue("--1",property));
property.setMax("5");
property.setMin("1");
assertNull(ConstraintValueValidator.validateValue("1",property));
assertNull(ConstraintValueValidator.validateValue("5",property));
assertNotNull(ConstraintValueValidator.validateValue("6",property));