Esempio n. 1
0
 public void SubQueryComparisonConstructorTest()
 {
     Expression left = null; // TODO: Initialize to an appropriate value
     PredicateOperators op = new PredicateOperators(); // TODO: Initialize to an appropriate value
     ScalarSelect right = null; // TODO: Initialize to an appropriate value
     SubQueryOperator cp = new SubQueryOperator(); // TODO: Initialize to an appropriate value
     SubQueryComparison target = new SubQueryComparison(left, op, right, cp);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Esempio n. 2
0
 public SubQueryComparison(Expression left, PredicateOperators op, ScalarSelect right, SubQueryOperator cp)
     : base(left, op, right)
 {
     SubQueryOperator = cp;
 }