BufTools.FluentValidation.TestByExample 1.0.2

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package BufTools.FluentValidation.TestByExample --version 1.0.2
NuGet\Install-Package BufTools.FluentValidation.TestByExample -Version 1.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BufTools.FluentValidation.TestByExample" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BufTools.FluentValidation.TestByExample --version 1.0.2
#r "nuget: BufTools.FluentValidation.TestByExample, 1.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install BufTools.FluentValidation.TestByExample as a Cake Addin
#addin nuget:?package=BufTools.FluentValidation.TestByExample&version=1.0.2

// Install BufTools.FluentValidation.TestByExample as a Cake Tool
#tool nuget:?package=BufTools.FluentValidation.TestByExample&version=1.0.2

Testing Validators by Example

Allows testing FluentValidators using example values in the XML comments of a class being tested

var tester = new TestValidatorsByExample();
var services = new ServiceCollection();
var types = services.AddSingletonClassesWithAttribute<TestValidatorByExampleAttribute>(AllAssemblies);

var errors = await _exampleTester.GetValidationErrors(services, types);

Getting Started

  1. Create a service collection and register all the classes and dependencies needed to test the validators
var services = new ServiceCollection();
var types = services.AddSingletonClassesWithAttribute<TestValidatorByExampleAttribute>(GetType().Assembly);
  1. Check for errors. An empty collection means no errors/
var errors = await _exampleTester.GetValidationErrors(services, types);
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 79 5/9/2024
1.0.1 75 5/8/2024
1.0.0 75 5/8/2024