Ejemplo n.º 1
0
 public void OrderByExpressionConstructorTest()
 {
     Expression expression = null; // TODO: Initialize to an appropriate value
     SortOrder sortOrder = new SortOrder(); // TODO: Initialize to an appropriate value
     string collationName = string.Empty; // TODO: Initialize to an appropriate value
     OrderByExpression target = new OrderByExpression(expression, sortOrder, collationName);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Ejemplo n.º 2
0
 public void OrderByExpressionConstructorTest2()
 {
     Expression expression = null; // TODO: Initialize to an appropriate value
     OrderByExpression target = new OrderByExpression(expression);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }