Beispiel #1
0
 static void AssertOk(StateStoreResult result) =>
 Assert.IsInstanceOf(typeof(Ok), result);
 static void AssertError(StateStoreResult result) =>
 Assert.IsInstanceOf(typeof(ErrorResult), result);
Beispiel #3
0
 public void Test_ConnectionError()
 {
     Assert.IsNotNull(StateStoreResult.ConnectionError());
 }
Beispiel #4
0
 public void Test_Ok()
 {
     Assert.IsNotNull(StateStoreResult.Ok());
 }
Beispiel #5
0
 public void Test_StateError()
 {
     Assert.IsNotNull(StateStoreResult.StateError());
 }