コード例 #1
0
        public void CheckIfTheProductDoesNotExist()
        {
            ProductTypeRepository repoPr   = CreateRepositoryPr();
            ProductType           scissors = repoPr.CreateProduct(6, 34.51, "Very Sharp scissors", 25);

            Assert.IsFalse(repoPr.CheckIfProductExists(7));
        }