Understanding the Difference Between Unit Test and Integration Test
This article is not intended to exhaustively describe unit tests, but rather to promote a clear...
View ArticleWallabyJs, a smart unit tests runner!
Wallaby.js is a smart runner JavaScript tests and it’s super fast, it runs continuously your...
View ArticleHow to unit test Internal classes in .NET Core applications?
Introduction The creation of unit tests is an important step in ensuring the quality of...
View ArticleHow to unit test private methods in .NET Core applications? (even if it’s bad)
Introduction Yes it’s bad and dirty! Since your private methods are only an implementation detail...
View ArticleHow to fix unit test discovery in VS 2017 with MSTest V2?
Introduction Microsoft Test Framework “MSTest V2” is the evolution of the Microsoft Test Framework and Adapter....
View ArticleASP.NET Core 2.1 middlewares part 2: Unit test a custom middleware
ASP.NET Core 2.1 middlewares part 1: Building a custom middleware ASP.NET Core 2.1 middlewares...
View ArticleCommon features in ASP.NET Core 2.1 WebApi: Testing
Common features in ASP.NET Core 2.1 WebApi: Authenticating with a JWT Common features in...
View ArticleYou will never give up a unit test anymore with ExpectedObjects in .NET Core
Introduction Let’s be honest, who has never abandoned a unit test because it was long...
View ArticleASP.NET Core 2+ best practices and practical tools for testing, part 1
ASP.NET Core 2+ best practices and practical tools for testing, part 1 ASP.NET Core 2+...
View ArticleASP.NET Core 2+ best practices and practical tools for testing, part 2, Use...
ASP.NET Core 2+ best practices and practical tools for testing, part 1 ASP.NET Core 2+...
View ArticleTips & tricks for unit testing in .NET Core 3: Mocking IHttpContextAccessor
Introduction I wanted to write this article because I recently came across an interesting test...
View ArticleTips & tricks for unit testing in .NET Core 3: Using and mocking ISystemClock...
Introduction I discovered not long ago that a way to inject DateTime by dependency in...
View ArticleASP.NET Core 7: Better Minimal endpoints testing with typed results
Introduction ASP.NET Core 7 bring another great improvement on Minimal APIs, especially on unit testing....
View Article