facetFactory.process(new ProcessMethodContext(Order.class, null, null, method, methodRemover, facetedMethod));
final Facet facet = facetedMethod.getFacet(BigDecimalValueFacet.class);
assertNotNull(facet);
assertTrue(facet instanceof BigDecimalFacetForPropertyFromJavaxValidationDigitsAnnotation);
final BigDecimalFacetForPropertyFromJavaxValidationDigitsAnnotation annotation = (BigDecimalFacetForPropertyFromJavaxValidationDigitsAnnotation) facet;
assertEquals(new Integer(18), annotation.getLength());
assertEquals(new Integer(4), annotation.getScale());
}