Random.Data.Generatinator
2.1.0
See the version list below for details.
dotnet add package Random.Data.Generatinator --version 2.1.0
NuGet\Install-Package Random.Data.Generatinator -Version 2.1.0
<PackageReference Include="Random.Data.Generatinator" Version="2.1.0" />
paket add Random.Data.Generatinator --version 2.1.0
#r "nuget: Random.Data.Generatinator, 2.1.0"
// Install Random.Data.Generatinator as a Cake Addin #addin nuget:?package=Random.Data.Generatinator&version=2.1.0 // Install Random.Data.Generatinator as a Cake Tool #tool nuget:?package=Random.Data.Generatinator&version=2.1.0
This nuget package is a pet project of mine, to be used for rapidly creating coherent data sets. Definitely a WIP
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. |
.NET Core | netcoreapp3.1 is compatible. |
-
.NETCoreApp 3.1
- Newtonsoft.Json (>= 12.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
I've exposed the source on github! better than documentation! (documentation will eventually come)'Using a config case name, you can have another config inherit from it:
ClassBuilder.AddClassCase<TestClass>("one").For(x => x.Name,() => "Aaron")
ClassBuilder.AddClassCase<TestClass>("two","one") // This will inherit the name "Aaron", unless exlicitly overriden
Added the ability to return 'null' values in your 'For' blocks, i.e. .For(x => x.Date, () => null)
Added MORE Unit tests