Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Testify | 20,997 | 14,688 | 77,233 | 21 hours ago | 42 | May 30, 2023 | 411 | mit | Go | |
A toolkit with common assertions and mocks that plays nicely with the standard library | ||||||||||
Mockito | 14,328 | 38,950 | 14,259 | 14 hours ago | 346 | November 02, 2023 | 367 | mit | Java | |
Most popular Mocking framework for unit tests written in Java | ||||||||||
Msw | 13,824 | 2,190 | 6 hours ago | 200 | November 24, 2023 | 85 | mit | TypeScript | ||
Seamless REST/GraphQL API mocking library for browser and Node.js. | ||||||||||
Mockery | 10,505 | 112,379 | 18,411 | 4 days ago | 41 | August 06, 2023 | 106 | bsd-3-clause | PHP | |
Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succinct API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL). | ||||||||||
Mock | 9,057 | 4,533 | 10,326 | 4 months ago | 55 | May 12, 2022 | 85 | apache-2.0 | Go | |
GoMock is a mocking framework for the Go programming language. | ||||||||||
Go Sqlmock | 5,523 | 1,435 | a month ago | 21 | June 28, 2020 | 76 | other | Go | ||
Sql mock driver for golang to test database interactions | ||||||||||
Mockoon | 5,522 | 8 | 12 hours ago | 48 | October 30, 2023 | 68 | other | TypeScript | ||
Mockoon is the easiest and quickest way to run mock APIs locally. No remote deployment, no account required, open source. | ||||||||||
Mockery | 5,214 | 314 | 7 days ago | 151 | November 21, 2023 | 33 | bsd-3-clause | Go | ||
A mock code autogenerator for Go | ||||||||||
Mockk | 5,159 | 7 days ago | 257 | apache-2.0 | Kotlin | |||||
mocking library for Kotlin | ||||||||||
Ohhttpstubs | 4,989 | 1,238 | a month ago | 60 | December 02, 2020 | 54 | mit | Objective-C | ||
Stub your network requests easily! Test your apps with fake network data and custom response time, response code and headers! |
Visit the NSubstitute website for more information.
NSubstitute is designed as a friendly substitute for .NET mocking libraries.
It is an attempt to satisfy our craving for a mocking library with a succinct syntax that helps us keep the focus on the intention of our tests, rather than on the configuration of our test doubles. We've tried to make the most frequently required operations obvious and easy to use, keeping less usual scenarios discoverable and accessible, and all the while maintaining as much natural language as possible.
Perfect for those new to testing, and for others who would just like to to get their tests written with less noise and fewer lambdas.
If you have questions, feature requests or feedback on NSubstitute please raise an issue on our project site. All questions are welcome via our project site, but for "how-to"-style questions you can also try StackOverflow with the [nsubstitute] tag, which often leads to very good answers from the larger programming community. StackOverflow is especially useful if your question also relates to other libraries that our team may not be as familiar with (e.g. NSubstitute with Entity Framework). You can also head on over to the NSubstitute discussion group if you prefer.
Let's say we have a basic calculator interface:
public interface ICalculator
{
int Add(int a, int b);
string Mode { get; set; }
event Action PoweringUp;
}
We can ask NSubstitute to create a substitute instance for this type. We could ask for a stub, mock, fake, spy, test double etc., but why bother when we just want to substitute an instance we have some control over?
_calculator = Substitute.For<ICalculator>();
Note: NSubstitute will only work properly with interfaces or with virtual
members of classes. Be careful substituting for classes with non-virtual members. See Creating a substitute for more information.
Now we can tell our substitute to return a value for a call:
_calculator.Add(1, 2).Returns(3);
Assert.That(_calculator.Add(1, 2), Is.EqualTo(3));
We can check that our substitute received a call, and did not receive others:
_calculator.Add(1, 2);
_calculator.Received().Add(1, 2);
_calculator.DidNotReceive().Add(5, 7);
If our Received() assertion fails, NSubstitute tries to give us some help as to what the problem might be:
NSubstitute.Exceptions.ReceivedCallsException : Expected to receive a call matching:
Add(1, 2)
Actually received no matching calls.
Received 2 non-matching calls (non-matching arguments indicated with '*' characters):
Add(1, *5*)
Add(*4*, *7*)
We can also work with properties using the Returns syntax we use for methods, or just stick with plain old property setters (for read/write properties):
_calculator.Mode.Returns("DEC");
Assert.That(_calculator.Mode, Is.EqualTo("DEC"));
_calculator.Mode = "HEX";
Assert.That(_calculator.Mode, Is.EqualTo("HEX"));
NSubstitute supports argument matching for setting return values and asserting a call was received:
_calculator.Add(10, -5);
_calculator.Received().Add(10, Arg.Any<int>());
_calculator.Received().Add(10, Arg.Is<int>(x => x < 0));
We can use argument matching as well as passing a function to Returns() to get some more behaviour out of our substitute (possibly too much, but that's your call):
_calculator
.Add(Arg.Any<int>(), Arg.Any<int>())
.Returns(x => (int)x[0] + (int)x[1]);
Assert.That(_calculator.Add(5, 10), Is.EqualTo(15));
Returns() can also be called with multiple arguments to set up a sequence of return values.
_calculator.Mode.Returns("HEX", "DEC", "BIN");
Assert.That(_calculator.Mode, Is.EqualTo("HEX"));
Assert.That(_calculator.Mode, Is.EqualTo("DEC"));
Assert.That(_calculator.Mode, Is.EqualTo("BIN"));
Finally, we can raise events on our substitutes (unfortunately C# dramatically restricts the extent to which this syntax can be cleaned up):
bool eventWasRaised = false;
_calculator.PoweringUp += () => eventWasRaised = true;
_calculator.PoweringUp += Raise.Event<Action>();
Assert.That(eventWasRaised);
NSubstitute and its tests can be compiled and run using Visual Studio and Visual Studio for Mac. Note that some tests are marked [Pending]
and are not meant to pass at present, so it is a good idea to exclude tests in the Pending category from test runs.
There are also build scripts in the ./build
directory for command line builds, and CI configurations in the project root.
To do full builds you'll also need Ruby, as the jekyll gem is used to generate the website.
@fluffy-spoon/substitute
on NPM)