NBuilder alternatives and similar packages
Based on the "Testing" category.
Alternatively, view NBuilder alternatives based on common mentions on social networks and blogs.
-
Bogus
:card_index: A simple fake data generator for C#, F#, and VB.NET. Based on and ported from the famed faker.js. -
xUnit
xUnit.net is a free, open source, community-focused unit testing tool for .NET. -
Fluent Assertions
A very extensive set of extension methods that allow you to more naturally specify the expected outcome of a TDD or BDD-style unit tests. Targets .NET Framework 4.7, as well as .NET Core 2.1, .NET Core 3.0, .NET 6, .NET Standard 2.0 and 2.1. Supports the unit test frameworks MSTest2, NUnit3, XUnit2, MSpec, and NSpec3. -
SpecFlow
#1 .NET BDD Framework. SpecFlow automates your testing & works with your existing code. Find Bugs before they happen. Behavior Driven Development helps developers, testers, and business representatives to get a better understanding of their collaboration -
AutoFixture
AutoFixture is an open source library for .NET designed to minimize the 'Arrange' phase of your unit tests in order to maximize maintainability. Its primary goal is to allow developers to focus on what is being tested rather than how to setup the test scenario, by making it easier to create object graphs containing test data. -
Testcontainers
A library to support tests with throwaway instances of Docker containers for all compatible .NET Standard versions. -
Verify
Verify is a snapshot tool that simplifies the assertion of complex data models and documents. -
NBomber
Modern and flexible load testing framework for Pull and Push scenarios, designed to test any system regardless a protocol (HTTP/WebSockets/AMQP etc) or a semantic model (Pull/Push). -
WireMock.Net
WireMock.Net is a flexible product for stubbing and mocking web HTTP responses using advanced request matching and response templating. Based on the functionality from http://WireMock.org, but extended with more functionality. -
Machine.Specifications
Machine.Specifications is a Context/Specification framework for .NET that removes language noise and simplifies tests. -
Compare-Net-Objects
What you have been waiting for :+1: Perform a deep compare of any two .NET objects using reflection. Shows the differences between the two objects. -
NetArchTest
A fluent API for .Net that can enforce architectural rules in unit tests. -
GenFu
GenFu is a library you can use to generate realistic test data. It is composed of several property fillers that can populate commonly named properties through reflection using an internal database of values or randomly created data. You can override any of the fillers, give GenFu hints on how to fill them. -
Expecto
A smooth testing lib for F#. APIs made for humans! Strong testing methodologies for everyone! -
Canopy
f# web automation and testing library, built on top of Selenium (friendly to c# also) -
ArchUnitNET
A C# architecture test library to specify and assert architecture rules in C# for automated testing. -
Fine Code Coverage
Visualize unit test code coverage easily for free in Visual Studio Community Edition (and other editions too) -
NFluent
Smooth your .NET TDD experience with NFluent! NFluent is an ergonomic assertion library which aims to fluent your .NET TDD experience (based on simple Check.That() assertion statements). NFluent aims your tests to be fluent to write (with a super-duper-happy 'dot' auto-completion experience), fluent to read (i.e. as close as possible to plain English expression), but also fluent to troubleshoot, in a less-error-prone way comparing to the classical .NET test frameworks. NFluent is also directly inspired by the awesome Java FEST Fluent assertion/reflection library (http://fest.easytesting.org/) -
xBehave.net
✖ An xUnit.net extension for describing each step in a test with natural language. -
NSpec
A battle hardened testing framework for C# that's heavily inspired by Mocha and RSpec. -
SpecsFor
SpecsFor is a light-weight Behavior-Driven Development framework that focuses on ease of use for *developers* by minimizing testing friction. -
LightBDD
BDD framework allowing to create easy to read and maintain tests. -
snapshooter
Snapshooter is a snapshot testing tool for .NET Core and .NET Framework -
Xunit.Gherkin.Quick
BDD in .NET Core - using Xunit and Gherkin (compatible with both .NET Core and .NET) -
ExpressionToCode
Generates valid, readable C# from an Expression Tree. -
Moq.Contrib.HttpClient
A set of extension methods for mocking HttpClient and IHttpClientFactory with Moq. -
SimpleStubs
*SimpleStubs* is a simple mocking framework that supports Universal Windows Platform (UWP), .NET Core and .NET framework. SimpleStubs is currently developed and maintained by Microsoft BigPark Studios in Vancouver. -
NScenario
Dead simple library for annotating steps of test case scenarios. -
SecTester
SecTester is a new tool that integrates our enterprise-grade scan engine directly into your unit tests.
Access the most powerful time series database as a service
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of NBuilder or a related project?
Popular Comparisons
README
Nbuilder - A rapid test object generator.
NBuilder.Trunk:
NBuilder.CI:
NBuilder.Publish
Through a fluent, extensible interface, NBuilder allows you to rapidly create test data, automatically assigning values to properties and public fields that are one of the built in .NET data types (e.g. ints and strings). NBuilder allows you to override for properties you are interested in using lambda expressions.
How can NBuilder help?
This test data has a variety of uses. For example:
- For automated functional and acceptance tests.
- Returning the data from a stubbed service.
- Creating test data for use when developing or testing an application.
- Performance tuning with large amounts of data.
Major features
Persistence
Easily persist generated objects using Persist()
NBuilder also allows you to easily set up persistence. You do this by telling NBuilder how to persist your objects. The most convenient place to do this would be in an NUnit SetUpFixture class.
var repository = new ProductRepository();
BuilderSetup.SetPersistenceCreateMethod<IList<Product>>(repository.CreateAll);
Once you have done this, it's simply a case of calling Persist()
instead of Build()
:
Builder<Product>.CreateListOfSize(100).Persist();
Hierarchy generation
Easily create hierarchies of objects by telling NBuilder how to add children to your object. You can even persist the hierarchies just by giving NBuilder create and update methods.
You can easily create a random hierarchy by first creating an initial list and then calling BuildHierarchy()
, and passing in a specification.
var hierarchySpec = Builder<HierarchySpec<Category>>.CreateNew()
.With(x => x.AddMethod = (parent, child) => parent.AddChild(child))
.With(x => x.Depth = 5)
.With(x => x.MaximumChildren = 10)
.With(x => x.MinimumChildren = 5)
.With(x => x.NamingMethod = (cat, title) => cat.Title = "Category " + title)
.With(x => x.NumberOfRoots = 10).Build();
Builder<Category>.CreateListOfSize(2500).BuildHierarchy(hierarchySpec);
This will create a category tree and by supplying a naming method, will even name your categories with their path in the tree. For example:
Category - Title = "1"
Category - Title = "1.1"
Category - Title = "1.2"
Category - Title = "2"
Category - Title = "2.1"
Category - Title = "2.1.1"
Category - Title = "2.2"
Category - Title = "2.3"
Configurability
NBuilder is highly configurable. Through the BuilderSetup class you can control how NBuilder names objects and disable naming for certain properties of certain types.
Custom persistence service
Easily add your own custom persistence service, allowing you to use any ORM
.
BuilderSetup.SetPersistenceService(new MyCustomPersistenceService());
Builder<Product>.CreateNew().Persist();
Turning off automatic property naming
If you don't want properties to be automatically given values, you can simply turn it off.
BuilderSetup.AutoNameProperties = false;
Changing the default property namer
You can change the default property namer to use the random value property namer, or you can create your own either from scratch implementing the IPropertyNamer interface, or by extending one of the classes, for example to add support
BuilderSetup.SetDefaultPropertyNamer(new RandomValuePropertyNamer());
Adding a property namer for a specific type
If, for example, you have a class that has a custom struct, NBuilder will ignore this property because it doesn't know how to set it. You could overcome this by adding a special property namer, just for Products.
BuilderSetup.SetPropertyNamerFor<Product>(new CustomProductPropertyNamer(new ReflectionUtil()));
Disabling automatic property naming for a specific property of a specific type
If you don't want values to automatically be assigned to certain properties, you can disable it like this:
BuilderSetup.DisablePropertyNamingFor<Product, int>(x => x.Id);
Extensibility
Through extension methods you can extend NBuilder's fluent interface to add custom building functionality. You can also create custom property namers globally or for specific types.
Custom declarations
In NBuilder nearly all of the public interface is implemented with extension methods. This of course means it's possible to add your own.
For example, out of the box the list builder has seven 'declarations' WhereAll()
, WhereRandom(n)
, WhereRandom(n, start, end)
, WhereTheFirst(n)
, WhereTheLast(n)
, AndTheNext(n)
, AndThePrevious(n)
. However if you wanted to add your own,
e.g. to return all the even or odd items, all you need to do is write a new extension method -WhereAllEven()
"Operable" extensions
If, for example, you find yourself repeating yourself when creating test data and you want to wrap something up in a method, you can do this by extending IOperable. You can do this generically or per-type.
For example say if rather than saying:
Builder<Product>.CreateListOfSize(10).WhereAll().Have(x => x.Title = "12345....[LongString].....12345").Build();
You could instead create an extension method:
public static IOperable<Product> HaveLongTitles(this IOperable<Product> operable)
{
((IDeclaration<Product>) operable).ObjectBuilder.With(x => x.Title = "12345....[LongString].....12345");
return operable;
}
Giving you the ability to say:
Builder<Product>
.CreateListOfSize(10)
.WhereAll()
.HaveLongTitles()
.Build();
You could of course make it even more succinct by adding an extension method to IListBuilder
public static IListBuilder<Product> WhereAllHaveLongTitles(this IListBuilder<Product> listBuilder)
{
var listBuilderImpl = (IListBuilderImpl<Product>) listBuilder;
var declaration = new GlobalDeclaration<Product>(listBuilderImpl, listBuilderImpl.CreateObjectBuilder());
declaration.Have(x => x.Title = "12345....[LongString].....12345");
return declaration;
}
This would allow you to say:
Builder<Product>.CreateListOfSize(10).WhereAllHaveLongTitles();
For more examples, please check the functional tests
Until the full documentation is available please have a look at the functional tests in the source code. These explain how to do everything that's currently possible in NBuilder.
Contributing
To run the functional tests
Create an SQL Database named NBuilderTests
.
Update the connection string Data Source inside the App.config
and make sure it points to an instance of SQL Server on your development machine.
<add name="Default" connectionString="Data Source=[.\SQLExpress ];Initial Catalog=NBuilderTests;Integrated Security=SSPI"/>
Development guidelines
- The project has two outputs - a CLR version and a Silverlight version. All code must compile for both.
- Every patch must have unit tests and those tests must provide 100% coverage.
- Every new class must have a 'unit' test fixture at least.
- Add integration tests when necessary to do so.
- For new features or changes to existing features use the functional tests project for high level real world tests and to serve as simple documentation for users.
- Any new tests must follow this naming convention:
MethodName_Scenario_Expectation()
- Every class must have an interface and must be injected through constructor arguments.
- Every class must have a single responsibility. (SOLID Principles)
- Every new test must be in Arrange Act Assert form. If touching an existing test in record/replay, convert it to AAA syntax unless it is too time consuming.
- The "Foo Bar" convention is not permitted anywhere
- American English spellings should be used not British English
Tests are divided into three categories:
Unit - The class under test is completely isolated by use of stubs or mocks.
Integration - Classes tested together.
Functional - 'Real life' tests and documentation.
Continuous Integration
NBuilder uses TeamCity hosted by CodeBetter for continuous integration.