Beispiel #1
0
 public void BinaryExpressionBuilder_Throws()
 {
     Should.Throw <KeyNotFoundException>(() => ExpressionBuilderForTest.GetBinaryExpressionBuilder("not-exists-key"));
 }
Beispiel #2
0
 public void EvaluationExpressionBuilder_Keys_returnBuilder(string key)
 {
     ExpressionBuilderForTest.GetEvaluationExpressionBuilder(key).ShouldNotBeNull();
 }
Beispiel #3
0
 public void BinaryExpressionBuilder_Keys_returnBuilder(string key)
 {
     ExpressionBuilderForTest.GetBinaryExpressionBuilder(key).ShouldNotBeNull();
 }