Example #1
0
 public void ThenTheValueShouldBeCorrect()
 {
     optional.AssertSome(42);
 }
Example #2
0
 public void ThenTheValueIsCorrect()
 {
     optional.AssertSome(42);
 }
Example #3
0
 public void ThenTheResultIsCorect()
 {
     _result.AssertSome(42);
 }
Example #4
0
 public void ThenTheFilterResultShouldBeCorrect()
 {
     result.AssertSome(42);
 }
Example #5
0
 public void ThenTheMapResultIsCorrect()
 {
     result.AssertSome(84);
 }