Ejemplo n.º 1
0
 public bool GetToggleState(string toggleKey)
 {
     return(_repo.Get(toggleKey));
 }
Ejemplo n.º 2
0
 private void GivenTheStateRepoWillReturnAToggleState()
 {
     _expectedState = _fixture.Create <bool>();
     _repo.Get(Arg.Any <string>()).ReturnsForAnyArgs(_expectedState);
 }