assertNotNull(beforeActionMethod);
assertEquals("before", beforeActionMethod.methodName());
ActionSignature afterActionMethod = db.getAfterActionMethodForInterceptor(Interceptor1.class);
assertNotNull(afterActionMethod);
assertEquals("after", afterActionMethod.methodName());
assertEquals(2, rm.size());
assertTrue(rm.contains(new MojaveRoute("method-interceptor1", null, null)));
assertTrue(rm.contains(new MojaveRoute("method-interceptor1", "someAction", null)));
}