示例#1
0
 public void SelectTest9()
 {
     var table = new Table("test");
     var from = new From.From(table);
     var exp = table["foo"].Equal(table["bar"]);
     Where.Where target = new Where.Where(from, exp);
     Top top = null; // TODO: Initialize to an appropriate value
     Expression selectItem = null; // TODO: Initialize to an appropriate value
     Select.Select expected = null; // TODO: Initialize to an appropriate value
     Select.Select actual;
     actual = target.Select(top, selectItem);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
示例#2
0
 public void SelectTest19()
 {
     var table = new Table("test");
     var from = new From.From(table);
     var exp = table["foo"].Equal(table["bar"]);
     Where.Where target = new Where.Where(from, exp);
     List<Expression> selectedItems = null; // TODO: Initialize to an appropriate value
     GroupBy.GroupBy groupBy = null; // TODO: Initialize to an appropriate value
     OrderBy.OrderBy orderBy = null; // TODO: Initialize to an appropriate value
     Select.Select expected = null; // TODO: Initialize to an appropriate value
     Select.Select actual;
     actual = target.Select(selectedItems, groupBy, orderBy);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }