public void NullPropertyValueConversion()
 {
     using (Form form = new Form()) {
         PropertyDescriptor descriptor = TypeDescriptor.GetProperties(form).Find("Text", true);
         Assert.IsNull(RubyControlFieldExpression.ConvertPropertyValue(descriptor, null));
     }
 }