facetFactory.process(new ProcessMethodContext(Customer.class, actionMethod, methodRemover, facetedMethod));
final Facet facet = facetedMethod.getFacet(ExecutedFacet.class);
assertNotNull(facet);
assertTrue(facet instanceof ExecutedFacetAbstract);
final ExecutedFacetAbstract executedFacetAbstract = (ExecutedFacetAbstract) facet;
assertEquals(Target.REMOTE, executedFacetAbstract.getTarget());
assertNoMethodsRemoved();
}