December 2019
Intermediate to advanced
200 pages
3h 54m
English
Throughout this book, we've implemented patterns and best practices with the intention of separating the layers of our TripLog app, making it easier to maintain and test. Over the course of this chapter, we'll write unit tests for the business logic in our ViewModels.
In this chapter, we'll cover the following topics:
We'll start by adding a new NUnit project to our solution, to contain all of the unit tests we'll write throughout the rest of the chapter.
To test the business logic in our TripLog app, we'll start out by creating a new unit test project in our solution that ...