コード例 #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
ファイル: PmsService.cs プロジェクト: 15831944/TX-DMS
        public List <Part> GetParts()
        {
            var part = new DbPart();

            return(part.GetParts());
        }