コード例 #1
0
        public void ProductExists()
        {
            var result = ProductLogic.Exists(p);

            Assert.IsTrue(result);
        }
コード例 #2
0
        public void ProductExists_ShouldFail()
        {
            var result = ProductLogic.Exists(newProduct);

            Assert.IsTrue(result);
        }