Exemplo n.º 1
0
        public void Clear_should_make_the_dictionary_empty()
        {
            _sitemaps.Add("foo", new XmlSiteMap());
            _sitemaps.Add("bar", new XmlSiteMap());

            _sitemaps.Clear();

            Assert.Equal(0, _sitemaps.Count);
        }