public void NullIncludedConstructorTest() { string name = string.Empty; // TODO: Initialize to an appropriate value bool isStar = false; // TODO: Initialize to an appropriate value NullIncluded target = new NullIncluded(name, isStar); Assert.Inconclusive("TODO: Implement code to verify target"); }
public void NullIncludedConstructorTest2() { AggregateQualifier qualifier = new AggregateQualifier(); // TODO: Initialize to an appropriate value string name = string.Empty; // TODO: Initialize to an appropriate value Expression expression = null; // TODO: Initialize to an appropriate value NullIncluded target = new NullIncluded(qualifier, name, expression); Assert.Inconclusive("TODO: Implement code to verify target"); }