}
final Method method = findMethod(Customer.class, "getFirstName");
facetFactory.process(new ProcessMethodContext(Customer.class, null, null, method, methodRemover, facetedMethod));
final Facet facet = facetedMethod.getFacet(MultiLineFacet.class);
assertNotNull(facet);
assertTrue(facet instanceof MultiLineFacetOnPropertyAnnotation);
final MultiLineFacetOnPropertyAnnotation multiLineFacetAnnotation = (MultiLineFacetOnPropertyAnnotation) facet;
assertEquals(12, multiLineFacetAnnotation.numberOfLines());
assertEquals(true, multiLineFacetAnnotation.preventWrapping());