FluentValidation.Validators.UnitTestExtension
FluentValidation.Validators.UnitTestExtension copied to clipboard
Small library that extends and simplifies possibilities of testing code that is using FluentValidation package.
Resolve https://github.com/MichalJankowskii/FluentValidation.Validators.UnitTestExtension/issues/14 The issue was particularly prevalent when working with nullable types as most of the time validator rules have `.Value` at the end. Something like this: ``` C# RuleFor(x...
Hello, in the code underneath I try to check if the validation rule `GreaterThan(0)` for the id of the `Driver` object in a `Shift` is present. Unfortunately the test always...