nbuilder icon indicating copy to clipboard operation
nbuilder copied to clipboard

Rapid generation of test objects in .NET

Results 38 nbuilder issues
Sort by recently updated
recently updated
newest added

* Resolves #104 by adding in additional address field generations for USA addresses. * Also fixes a few minor issues found with upper-bound exclusivity.

This is a discussion about the release of version 6.2, which I'm _guessing_ is the next release. ## Checklist - [ ] Confirm list of items/issues to include in the...

Hello, `TheRest()` method in `ListBuilderExtensions` doesn't seem to make any effect on generated data, when it is used after `Random()`. It doesn't throw any exception either, which results in incorrect...

Hi there The licensing info on nuget.org points to LGPL, but here on github is MIT. Can you please specify which one is correct or I am missing something ?

Hi When ```c# var foo= _builder.CreateNew() .With(x => x.Bar = 123); ``` and ```c# public class TransportOrderInboundMessageHeaderDto { public int Id{ get; set; } public string Bar { get; init;...

I'm trying to apply the setting to turn off automatic property naming as described in the readme [here](https://github.com/nbuilder/nbuilder#turning-off-automatic-property-naming) but it appears that the AutoNameProperties static property on BuilderSetup is now...

Hi, Is it possible to overwrite the default value given to a type? If not, can this be implemented? It would be very handy for the nullable Guid type. These...

Hi, Is it possible to add support for an asynchronous persistence service with async create and update methods? This together with the ISingleObjectBuilder.PersistAsync() method. Thanks!

Using NBuilder at work, every now and then I will typo the `builder.With(x => x.Id = 10)` pattern to `builder.With(x => x.Id == 10)`, which will not work. I propose...