-
I have an entity that looks like this in a .NET 6 project:
```csharp
public class Recipe
{
public string Title { get; set; }
public DateOnly Dob { get; set; } // context doesn't make …
-
I've come across a performance issue when using AutoFaker to generate test objects for use in unit tests.
I've been able to create a super simplified example of my domain model to demonstrate two t…
-
Hello! Is there a way to do that (maybe through range set)? If yes, please tell me how, because negative ints are not suitable for my need, and i have a lot of int properties and writing RuleFor each …
-
Hello,
I'm encountering an issue with AutoBogus v2.13.1. The problem arises when attempting to generate an entity that includes an `IReadOnlySet` property. Here's the relevant code snippet:
```
v…
-
I have a full repo code showing that AutoBogus cannot create a new instance of something, if that-something has a property which is an abstract type.
I thought [the documentation said](https://gith…
-
I was attempting to use AutoBogus.Moq to generate some fake data interfaces. Unfortunately the interfaces in question have get-only properties, which AutoBogus.Moq doesn't seem to support.
```cs
u…
-
Given the following code
```cs
[Fact]
public void TestAutoBogus()
{
var testData = AutoFaker.Generate();
testData.Should().NotBeNull();
}
private class …
ledux updated
8 months ago
-
Hey,
I have some thought about how to enhancement AutoFixture this is probably two issues but would like to get your opinion in one place befog creating some sub issues;
1. Support integration w…
-
I noticed that AutoBogus is INCREDIBLY slow on blazor WASM. I tested this code var mock= new AutoFaker().Generate(10); using blazor server side, web api, xunit etc and blazor wasm is incredibl…
-
`RuleFor` doesn't have any effect because my classes only contain properties that are get-only, only initialized by the constructor:
```csharp
var products = new AutoFaker()
.RuleFor(p => p.P…