Beispiel #1
0
 internal static MockState PassThrough(MockState previousState, PassThroughAction action)
 {
     Assert.That(action, Is.Not.Null);
     return(previousState);
 }
Beispiel #2
0
 internal static MockState ReplaceBar(MockState previousState, ChangeBarAction action)
 {
     Assert.That(action, Is.Not.Null);
     previousState.Bar = action.Value;
     return(previousState);
 }