public void Cannot_retrieve_other_properties()
        {
            var retriever = new StringListValueRetriever();

            retriever.CanRetrieve(new KeyValuePair <string, string>(), null, typeof(string[])).Should().BeFalse();
            retriever.CanRetrieve(new KeyValuePair <string, string>(), null, typeof(List <int>)).Should().BeFalse();
            retriever.CanRetrieve(new KeyValuePair <string, string>(), null, typeof(string)).Should().BeFalse();
        }
        public void Can_retrieve_string_ilist_properties()
        {
            var retriever = new StringListValueRetriever();

            retriever.CanRetrieve(new KeyValuePair <string, string>(), null, typeof(IList <string>)).Should().BeTrue();
        }