use of org.ff4j.strategy.time.OfficeHourStrategy in project ff4j by ff4j.
the class OfficeHourStrategyTest method testOfficeHour4.
@Test(expected = IllegalArgumentException.class)
public void testOfficeHour4() {
OfficeHourStrategy ohs = new OfficeHourStrategy();
Map<String, String> initParams = new HashMap<String, String>();
initParams.put("specialOpenings", "[08:00-12:00]@2015@-01-01;[08:00-12:00]@2015-01-02");
ohs.init("f1", initParams);
}
Aggregations