public void GetPartsTest() { DbPart target = new DbPart(); // TODO: Initialize to an appropriate value List <Part> expected = null; // TODO: Initialize to an appropriate value List <Part> actual; actual = target.GetParts(); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public List <Part> GetParts() { var part = new DbPart(); return(part.GetParts()); }