use of org.apache.sling.validation.impl.util.examplevalidators.IntegerValidator in project sling by apache.
the class ValidatorTypeUtilTest method testGetValidatorTypeOfDirectImplementations.
@SuppressWarnings("unchecked")
@Test
public void testGetValidatorTypeOfDirectImplementations() {
Assert.assertThat((Class<String>) ValidatorTypeUtil.getValidatorType(new RegexValidator()), Matchers.equalTo(String.class));
Assert.assertThat((Class<String>) ValidatorTypeUtil.getValidatorType(new StringValidator()), Matchers.equalTo(String.class));
Assert.assertThat((Class<Integer>) ValidatorTypeUtil.getValidatorType(new IntegerValidator()), Matchers.equalTo(Integer.class));
}
Aggregations