Soenneker.Utils.AutoBogus
3.0.700
Prefix Reserved
See the version list below for details.
dotnet add package Soenneker.Utils.AutoBogus --version 3.0.700
NuGet\Install-Package Soenneker.Utils.AutoBogus -Version 3.0.700
<PackageReference Include="Soenneker.Utils.AutoBogus" Version="3.0.700" />
<PackageVersion Include="Soenneker.Utils.AutoBogus" Version="3.0.700" />
<PackageReference Include="Soenneker.Utils.AutoBogus" />
paket add Soenneker.Utils.AutoBogus --version 3.0.700
#r "nuget: Soenneker.Utils.AutoBogus, 3.0.700"
#:package Soenneker.Utils.AutoBogus@3.0.700
#addin nuget:?package=Soenneker.Utils.AutoBogus&version=3.0.700
#tool nuget:?package=Soenneker.Utils.AutoBogus&version=3.0.700
Soenneker.Utils.AutoBogus
The .NET Autogenerator
This project is an automatic creator and populator for the fake data generator Bogus. It's a replacement for the abandoned AutoBogus library.
The goals:
- Be fast
- Support the latest types in .NET
It uses the fastest .NET Reflection cache: soenneker.reflection.cache. Bogus updates are automatically integrated.
.NET 8+ is supported.
Installation
dotnet add package Soenneker.Utils.AutoBogus
Usage
- Create an
AutoFakerinstance:
var optionalConfig = new AutoFakerConfig();
var autoFaker = new AutoFaker(optionalConfig);
- Call
Generate<>()on any type you want:
var randomWord = autoFaker.Generate<string>();
var dictionary = autoFaker.Generate<Dictionary<int, string>>();
var order = autoFaker.Generate<Order>();
- It's also possible to generate types via an argument:
var randomWord = autoFaker.Generate(typeof(string));
- Set a faker, configuration, rules, etc:
autoFaker.Config.Faker = new Faker("de");
autoFaker.Config.RepeatCount = 3;
...
AutoFakerOverride
This is the recommended way for controlling type customization:
public class OrderOverride : AutoFakerOverride<Order>
{
public override void Generate(AutoFakerOverrideContext context)
{
var target = (context.Instance as Order)!;
target.Id = 123;
// Faker is available
target.Name = context.Faker.Random.Word();
// AutoFaker is also available
target.Customer = context.AutoFaker.Generate<Customer>();
}
}
Then just add AutoFakerOverride to the AutoFaker.Config instance:
autoFaker.Config.Overrides = new List<AutoFakerGeneratorOverride>();
autoFaker.Config.Overrides.Add(new OrderOverride());
AutoFaker<T>
This inherits from Bogus.Faker, and can be used to designate rules specific to the AutoFaker instance.
var autoFaker = new AutoFaker<Order>();
autoFaker.RuleFor(x => x.Id, f => f.Random.Number());
var order = autoFaker.Generate();
Interfaces/Abstracts
The base library does not generate interfaces or abstract objects, but these enable you to generate mocks of them:
- soenneker.utils.autobogus.moq
- soenneker.utils.autobogus.nsubstitute
- soenneker.utils.autobogus.fakeiteasy
Tips
- ⚠️ Instantiating an
AutoFakertakes a non-trivial amount of time because of BogusFakerinitialization (almost 1ms). It's recommended that a single instance be used if possible. AutoFaker.GenerateStatic<T>()is also available, but should be avoided (as it creates a newAutoFaker/Fakeron each call).
Notes
- Some patterns that existed in AutoBogus have been removed due to the complexity and performance impact.
- This is a work in progress. Contribution is welcomed.
Benchmarks
Soenneker.Utils.AutoBogus - AutoFaker
| Method | Mean | Error | StdDev |
|---|---|---|---|
| Generate_int | 79.40 ns | 0.635 ns | 0.563 ns |
| Generate_string | 241.35 ns | 3.553 ns | 3.324 ns |
| Generate_complex | 6,782.34 ns | 43.811 ns | 38.837 ns |
Soenneker.Utils.AutoBogus - AutoFaker<T>
| Method | Mean | Error | StdDev |
|---|---|---|---|
| Generate_string | 283.6 ns | 3.28 ns | 3.07 ns |
| Generate_complex | 8,504.0 ns | 76.58 ns | 67.89 ns |
AutoBogus
| Method | Mean | Error | StdDev |
|---|---|---|---|
| Generate_int | 1.17 ms | 0.033 ms | 0.026 ms |
| Generate_complex | 10.91 ms | 0.181 ms | 0.236 ms |
Bogus
| Method | Mean | Error | StdDev |
|---|---|---|---|
| Bogus_int | 19.70 ns | 0.176 ns | 0.165 ns |
| Bogus_string | 171.75 ns | 2.763 ns | 2.585 ns |
| Bogus_ctor | 730,669.06 ns | 8,246.622 ns | 7,310.416 ns |
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. 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. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- Bogus (>= 35.6.2)
- Soenneker.Extensions.FieldInfo (>= 3.0.45)
- Soenneker.Extensions.MemberInfo (>= 3.0.41)
- Soenneker.Reflection.Cache (>= 3.0.470)
- System.Collections.Immutable (>= 9.0.2)
-
net9.0
- Bogus (>= 35.6.2)
- Soenneker.Extensions.FieldInfo (>= 3.0.45)
- Soenneker.Extensions.MemberInfo (>= 3.0.41)
- Soenneker.Reflection.Cache (>= 3.0.470)
- System.Collections.Immutable (>= 9.0.2)
NuGet packages (22)
Showing the top 5 NuGet packages that depend on Soenneker.Utils.AutoBogus:
| Package | Downloads |
|---|---|
|
Soenneker.Tests.Unit
A base test providing faker and autofaker capabilities |
|
|
Soenneker.Fixtures.Unit
A base xUnit fixture providing injectable log output, DI mechanisms like IServiceCollection and ServiceProvider, and AutoFaker/Faker for generating test data. |
|
|
Soenneker.TestHosts.Unit
A lightweight host for dependency-driven unit tests. |
|
|
Soenneker.AutoFaker.Overrides.IdNamePair
An AutoFaker (AutoBogus) override for the DTO IdNamePair |
|
|
Soenneker.AutoFaker.Overrides.Documents.Document
An AutoFaker (AutoBogus) override for the base Document object |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 4.0.964 | 6,549 | 9/16/2026 |
| 4.0.963 | 2,156 | 9/16/2026 |
| 4.0.962 | 901 | 9/15/2026 |
| 4.0.960 | 37,190 | 9/12/2026 |
| 4.0.959 | 163 | 9/12/2026 |
| 4.0.958 | 4,496 | 9/12/2026 |
| 4.0.957 | 4,922 | 9/12/2026 |
| 4.0.956 | 135 | 9/12/2026 |
| 4.0.953 | 30,383 | 9/8/2026 |
| 4.0.952 | 4,713 | 9/8/2026 |
| 4.0.951 | 16,352 | 9/7/2026 |
| 4.0.950 | 4,490 | 9/7/2026 |
| 4.0.949 | 35,377 | 9/4/2026 |
| 4.0.948 | 8,170 | 9/4/2026 |
| 4.0.947 | 3,687 | 9/4/2026 |
| 4.0.946 | 6,975 | 9/3/2026 |
| 4.0.945 | 650 | 9/3/2026 |
| 4.0.944 | 6,409 | 9/2/2026 |
| 4.0.943 | 744 | 9/2/2026 |
| 3.0.700 | 496 | 3/1/2025 |