persistFacetFactory.process(new ProcessClassContext(Customer.class, methodRemover, facetedMethod));
final Facet facet = facetedMethod.getFacet(PersistedCallbackFacet.class);
assertNotNull(facet);
assertTrue(facet instanceof PersistedCallbackFacetViaMethod);
final PersistedCallbackFacetViaMethod persistedCallbackFacetViaMethod = (PersistedCallbackFacetViaMethod) facet;
final List<Method> methods = persistedCallbackFacetViaMethod.getMethods();
assertTrue(methods.contains(saveMethod));
assertTrue(methods.contains(persistMethod));
assertTrue(methodRemover.getRemovedMethodMethodCalls().contains(saveMethod));
}