AspUnitRunner.Tests.Core.Html.TestHtmlCollection.Count_of_collection_with_one_element_should_be_1 C# (CSharp) Метод

Count_of_collection_with_one_element_should_be_1() приватный Метод

private Count_of_collection_with_one_element_should_be_1 ( ) : void
Результат void
        public void Count_of_collection_with_one_element_should_be_1()
        {
            var elements = new IHtmlElement[] {
                new HtmlElement()
            };
            var collection = new HtmlCollection(elements);

            Assert.That(collection.Count, Is.EqualTo(1));
        }