public void AddConvention_add_only_convention_types()
        {
            var conventionsTypesFinder = new ConventionsTypeFinder();

            var types = new Type[]
            {
                typeof(String),
                typeof(Array),
                typeof(RegularConvention),
                typeof(IList<String>)
            };

            conventionsTypesFinder.AddConventions(types, (convention) => { Assert.IsType<RegularConvention>(convention); });
        }
        public void AddConvention_add_only_convention_types()
        {
            var conventionsTypesFinder = new ConventionsTypeFinder();

            var types = new Type[]
            {
                typeof(String),
                typeof(Array),
                typeof(RegularConvention),
                typeof(IList <String>)
            };

            conventionsTypesFinder.AddConventions(types, (convention) => { Assert.IsType <RegularConvention>(convention); });
        }