7 references to _converter
System.Windows.Forms.Tests (7)
System\Windows\Forms\FlatButtonAppearanceConverterTests.cs (7)
16string resultWithNullContext = (string)_converter.ConvertTo(context: null, culture: null, value: null, destinationType: typeof(string)); 17string resultWithNullCulture = (string)_converter.ConvertTo(context: null, culture: null, value: null, destinationType: typeof(string)); 26Action action1 = () => _converter.ConvertTo(context: null, culture: null, value: null, destinationType: null!); 27Action action2 = () => _converter.ConvertTo(context: null, culture: null, value: null, destinationType: typeof(int)); 38Action action = () => _converter.GetProperties(context: null, value: button, attributes: null); 49PropertyDescriptorCollection properties = _converter.GetProperties(context: null, button, attributes); 61PropertyDescriptorCollection properties = _converter.GetProperties(contextMock.Object, button, attributes: null);