public void should_trigger_change_token_on_change()
 {
     this.Given(x => _steps.GivenThereIsAConfiguration(_initialConfig))
     .And(x => _steps.GivenOcelotIsRunningReloadingConfig(true))
     .And(x => _steps.GivenIHaveAChangeToken())
     .And(x => _steps.GivenThereIsAConfiguration(_anotherConfig))
     .And(x => _steps.GivenIWait(MillisecondsToWaitForChangeToken))
     .Then(x => _steps.TheChangeTokenShouldBeActive(true))
     .BDDfy();
 }