#testing
Read more stories on Hashnode
Articles with this tag
Assertion is an important part of testing. It allows you to check that your code is behaving as expected. In this article, we'll look at how to use...
One of the features of FakeItEasy is the ability to specify constraints on arguments passed to mocked methods. This can be useful for testing specific...
Test doubles are objects that are used in place of real objects during testing, allowing developers to isolate and control the behavior of specific...
FakeItEasy is a popular library for creating test doubles (mocks, stubs, and fakes) in .NET. It is a powerful tool for creating lightweight, flexible,...
When building a .NET Core application, it is important to also have a comprehensive suite of tests to ensure the quality and reliability of your code....
One of the best features of .NET Core is its built-in support for unit testing. In this article, we will explore how to write tests in .NET Core using...