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