7 references to _converter
System.Windows.Forms.Tests (7)
System\Windows\Forms\FlatButtonAppearanceConverterTests.cs (7)
18string resultWithNullContext = (string)_converter.ConvertTo(context: null, culture: null, value: null, destinationType: typeof(string)); 19string resultWithNullCulture = (string)_converter.ConvertTo(context: null, culture: null, value: null, destinationType: typeof(string)); 28Action action1 = () => _converter.ConvertTo(context: null, culture: null, value: null, destinationType: null!); 29Action action2 = () => _converter.ConvertTo(context: null, culture: null, value: null, destinationType: typeof(int)); 40Action action = () => _converter.GetProperties(context: null, value: button, attributes: null); 51PropertyDescriptorCollection properties = _converter.GetProperties(context: null, button, attributes); 63PropertyDescriptorCollection properties = _converter.GetProperties(contextMock.Object, button, attributes: null);