AspUnitRunner.Tests.Helpers.Tests.TestCollectionsExtensions.NameValueCollection_SequenceEqual_should_return_true C# (CSharp) Method

NameValueCollection_SequenceEqual_should_return_true() private method

        public void NameValueCollection_SequenceEqual_should_return_true()
        {
            var firstCollection = new NameValueCollection() {
                { "key1", "a" },
                { "key2", "b" }
            };

            var secondCollection = new NameValueCollection() {
                { "key1", "a" },
                { "key2", "b" }
            };

            Assert.That(firstCollection.SequenceEqual(secondCollection), Is.True);
        }