示例#1
0
        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.");
        }
示例#2
0
        public List <Part> GetParts()
        {
            var part = new DbPart();

            return(part.GetParts());
        }