FluentValidation.Validators.UnitTestExtension icon indicating copy to clipboard operation
FluentValidation.Validators.UnitTestExtension copied to clipboard

Small library that extends and simplifies possibilities of testing code that is using FluentValidation package.

Results 2 FluentValidation.Validators.UnitTestExtension issues
Sort by recently updated
recently updated
newest added

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...