Exemple #1
0
        public void AddAToyToChildsBag()
        {
            int toyId = _santa.AddToyToBag(toyName, childId);
            Dictionary <int, string> toyList = _santa.GetToysInChildsBag(childId);

            Console.WriteLine("error 1: " + toyList[toyId] + ": " + toyName);

            Assert.Equal(toyList[toyId], toyName);
        }