};
}
final Method saveMethod = findMethod(Customer.class, "saving");
final Method persistMethod = findMethod(Customer.class, "persisting");
saveFacetFactory.process(new ProcessClassContext(Customer.class, methodRemover, facetedMethod));
persistFacetFactory.process(new ProcessClassContext(Customer.class, methodRemover, facetedMethod));
final Facet facet = facetedMethod.getFacet(PersistingCallbackFacet.class);
assertNotNull(facet);
assertTrue(facet instanceof PersistingCallbackFacetViaMethod);
final PersistingCallbackFacetViaMethod persistingCallbackFacetViaMethod = (PersistingCallbackFacetViaMethod) facet;