4 references to ValidatePropertyType
System.Windows.Forms.Design.Tests (4)
System\Drawing\Design\ToolboxItemTests.cs (4)
1607Assert.Throws<ArgumentNullException>("value", () => item.ValidatePropertyType(propertyName, null, expectedType, allowNull: false)); 1616item.ValidatePropertyType(propertyName, null, expectedType, allowNull: true); 1625item.ValidatePropertyType(propertyName, 1, typeof(int), allowNull); 1634Assert.Throws<ArgumentException>("value", () => item.ValidatePropertyType(propertyName, new object(), typeof(int), allowNull));