コード例 #1
0
        public void GetTotalStandardCostByCategoryTest()
        {
            ProductCategory category = new ProductCategory();

            category.ProductCategoryID = 1;
            category.Name = "Bikes";
            int total = LinqService.GetTotalStandardCostByCategory(category);

            Assert.AreEqual(total, 92092);
        }