public void GetValueShouldReturnExpectedValue()
 {
     var expected = "test";
     var component = new Dictionary<string, object>() { { "Name", expected } };
     var target = new ExtensionMethodToPropertyDescriptor<IDictionary<string, object>, object>( "Name", c => c["Name"] );
     var actual = target.GetValue( component );
     Assert.Equal( expected, actual );
 }