Пример #1
0
        public void RemoveToyFromChildsBag()
        {
            int toyId = _santa.AddToyToBag(toyName, childId);

            _santa.RemoveToyFromBag(toyId);
            Dictionary <int, string> toyList = _santa.GetToysInChildsBag(childId);

            Assert.True(!toyList.ContainsKey(toyId));
        }