BetterMembership.Tests.Extensions.NameValueCollectionExtensionTests.GivenCollectionWithKeyAsNotBooleanWhenGetBooleanThenReturnDefault C# (CSharp) Method

GivenCollectionWithKeyAsNotBooleanWhenGetBooleanThenReturnDefault() private method

        public void GivenCollectionWithKeyAsNotBooleanWhenGetBooleanThenReturnDefault()
        {
            // arrange
            var testClass = new NameValueCollection { { TestKey, "xx" } };

            // act
            var result = testClass.GetBoolean(TestKey, true);

            // assert
            Assert.That(result, Is.True);
        }