6 references to _converter
System.Windows.Forms.Tests (6)
System\Windows\Forms\DataGridViewColumnConverterTests.cs (6)
22
_converter
.CanConvertTo(context: null, destinationType).Should().BeTrue();
56
Action action = () =>
_converter
.ConvertTo(context: null, culture: CultureInfo.InvariantCulture, value: _column, destinationType: null!);
63
Action action = () =>
_converter
.ConvertTo(context: null, culture: CultureInfo.InvariantCulture, value: _column, destinationType: typeof(int));
73
var descriptor =
_converter
.ConvertTo(context: null, culture: CultureInfo.InvariantCulture, value: column, destinationType: typeof(InstanceDescriptor)) as InstanceDescriptor;
80
var descriptor =
_converter
.ConvertTo(context: null, culture: CultureInfo.InvariantCulture, value: column, destinationType: typeof(InstanceDescriptor)) as InstanceDescriptor;
86
_converter
.ConvertTo(context: null, culture: CultureInfo.InvariantCulture, value: column, destinationType: typeof(string)).Should().Be(column.ToString());