Hi ! Im having problems trying to override a binding.
If I have a test with a rule such as this :
@Rule
public GuiceBerryRule guiceBerry = new GuiceBerryRule(CommonStackTestEnvironmentModule.class);
and I need to override a binding defined in that module? how would be the most recommended way to do it? is there a built in way into guiceberry? or the solution
for this problem is limited to Guice itself?
Just for context, im trying to mock Clock to a FakeClock Instance , for an Apiary integration test. I need to fix the "today" date to a particular date.