public void Init()
 {
     _fixture = new Fixture().Customize(new AutoRhinoMockCustomization());
     _sut = new StateConcurrentStorage();
 }
 public void GivenIHaveAStateService()
 {
     _storage = new StateConcurrentStorage();
     _stateService = new StateService(_storage);
 }