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