facetFactory.process(new ProcessMethodContext(CustomerStatic.class, actionMethod, methodRemover, facetedMethod));
final Facet facet = facetedMethod.getFacet(NamedFacet.class);
assertNotNull(facet);
assertTrue(facet instanceof NamedFacetAbstract);
final NamedFacetAbstract namedFacetAbstract = (NamedFacetAbstract) facet;
assertEquals("Another Name", namedFacetAbstract.value());
assertTrue(methodRemover.getRemovedMethodMethodCalls().contains(nameMethod));
}