コード例 #1
0
        public void GetCategoryByName()
        {
            var expected = new Category("C1", "WanderlandItems"); // THIS exists in DB by SQL injection
            var find     = handler.GetCategoryByName("WanderlandItems");

            Assert.AreEqual(expected, find);
        }