Unit Testing

Testing

Unit Testing redux-persist migrations with Typescript

redux-persist allows you to specify a migration path between versions, but how can you do that in a strongly-typed way through Typescript?

Read
Roslyn

Introducing: RoslynTester

NuGet package to help you unit test your Roslyn-based analyzers

Read
Roslyn

Getting started with your first diagnostic

With the release of Visual Studio 2015 RC, we also received the pretty much final implementation of the Diagnostics implementation. This SDK allows us to create our own diagnostics to help us write proper code that’s being verified against those rules in real-time: you don’t have to perform the verification at a separate build-step. What’s more is that we can combine that with a code fix: a shortcut integrated in Visual Studio that provides us a solution to what we determine to be a problem.

Read
Testing

Introduction to Unit Testing: What is Unit Testing?

A short introduction to unit testing

Read
Testing

Unit testing Web API routes and parameter validation

Let’s talk about routing. If you’ve ever developed a web application then you know the hassle you have with the constant “Resource not found” or “Multiple actions match the request” errors. What if I told you you could fix all this without ever having to open a browser? That’s right: we’ll unit test our routes! As an added bonus I’ll also show how you can unit test parameter validation since that’s probably one of the most important things to do when creating a (public) API.

Read
Testing

Properly testing Entity-Framework with Effort

An introduction to testing your EF logic

Read