use of com.jeanchampemont.wtfdyum.service.feature.FeatureStrategy in project WTFDYUM by jchampemont.
the class FeatureServiceTest method _init.
@Before
public void _init() {
initMocks(this);
final Map<Feature, FeatureStrategy> featureServices = new HashMap<>();
featureServices.put(Feature.NOTIFY_UNFOLLOW, notifyUnfollowFeatureService);
sut = new FeatureServiceImpl(featureServices);
}
Aggregations