You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@ReplaceWithInstance
public static Clock myClock = new Clock();
Or maybe:
@ReplaceWithInstance(AClockFactory.class)
public Clock myClock;
class AClockFactory implements RemockFactory<Clock> {
public Clock create() {
return new Clock();
}
}
The text was updated successfully, but these errors were encountered:
Perhaps:
Or maybe:
The text was updated successfully, but these errors were encountered: