AutoMapper.UnitTests.Mappers.NameValueCollectionMapperTests.IsMatch.ReturnsTrueWhenBothSourceAndDestinationTypesAreNameValueCollection C# (CSharp) Method

ReturnsTrueWhenBothSourceAndDestinationTypesAreNameValueCollection() private method

            public void ReturnsTrueWhenBothSourceAndDestinationTypesAreNameValueCollection()
            {
                var tp = new TypePair(typeof(NameValueCollection), typeof(NameValueCollection));
                var nvcm = new NameValueCollectionMapper();

                var result = nvcm.IsMatch(tp);

                result.ShouldBeTrue();
            }