return new GuiceProvider();
}
@Test
public void shouldBeAbleToOverrideVRaptorsDefaultImplementation() throws Exception {
MethodNotAllowedHandler handler = registerAndGetFromContainer(MethodNotAllowedHandler.class, CustomMethodNotAllowedHandler.class);
assertThat(handler, is(instanceOf(CustomMethodNotAllowedHandler.class)));
}