Exemple #1
0
 public void SetUp()
 {
     _fluentSomething = Substitute.For <IFluentSomething>();
     _something       = Substitute.For <ISomething>();
     _fluentSomething.ReturnsForAll <IFluentSomething>(_fluentSomething);
     _fluentSomething.ReturnsForAll <ISomething>(_something);
 }
 public void SetUp()
 {
     _fluentSomething = Substitute.For<IFluentSomething>();
     _something = Substitute.For<ISomething>();
     _fluentSomething.ReturnsForAll<IFluentSomething>(_fluentSomething);
     _fluentSomething.ReturnsForAll<ISomething>(_something);
 }