You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Fix ArgumentNullException in case of IValidatableObject returns null (#25693)
* Fix ArgumentNullException in case of IValidatableObject returns null (#25495)
* Skip validatable null check tests on NETFX (#25495)
* Fix an issue with tests ignore
Copy file name to clipboardExpand all lines: src/System.ComponentModel.Annotations/tests/ValidatorTests.cs
+48Lines changed: 48 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -190,6 +190,26 @@ public IEnumerable<ValidationResult> Validate(ValidationContext validationContex
190
190
}
191
191
}
192
192
193
+
[Fact]
194
+
[SkipOnTargetFramework(TargetFrameworkMonikers.NetFramework,"Null check not present in .NET Framework. See https://github.com/dotnet/corefx/issues/25495")]
[SkipOnTargetFramework(TargetFrameworkMonikers.NetFramework,"Null check not present in .NET Framework. See https://github.com/dotnet/corefx/issues/25495")]
0 commit comments