public void should_reload_config_on_change()
 {
     this.Given(x => _steps.GivenThereIsAConfiguration(_initialConfig))
     .And(x => _steps.GivenOcelotIsRunningReloadingConfig(true))
     .And(x => _steps.GivenThereIsAConfiguration(_anotherConfig))
     .And(x => _steps.GivenIWait(2500))
     .And(x => _steps.ThenConfigShouldBe(_anotherConfig))
     .BDDfy();
 }