-
Book Overview & Buying
-
Table Of Contents
Introducing Test Driven Development in C#
By :
Introducing Test Driven Development in C#
By:
Overview of this book
Even after many years, TDD remains a prominent buzzword at conferences, known for its effectiveness in producing maintainable, robust, and testable code. This course explores TDD's core concepts, methods, and patterns with practical examples in C# 7.
This course starts off with an introduction to unit tests and unit test frameworks. Basically, you will learn how to write and automate tests for your implementations. After that, we shift the paradigm and see how to write your tests before implementation itself. We explore how to add full test support to our projects, as well. Through practical examples you will witness how this technique helps us write higher-quality code. In the final sections of this course, you will learn proven methods and patterns for writing modular and testable code. The principles of TDD will help you write better and cleaner code. In addition, you’ll see how solid tests give you a new sense of confidence when you need to modify existing code, refactor, and add new features.
By the end of this course, you will have the tools you need to start building bulletproof applications, backed by an automated suite of tests to ensure quality software delivery.
The code bundle for this video course is available at - https://github.com/PacktPublishing/-Introducing-Test-Driven-Development-in-C-
Table of Contents (8 chapters)
Learn How Your Software Works with Test Automation
TDD – The Workflow to Bulletproof Your Code
Adding Test Support to a .NET Project
The Art of Writing Testable Code
Testing Modular Code Via Mocking
Modularizing Code and Inversion of Control
Dependency Injection Pattern – The Holy Grail of Modular Design
Concrete Examples of Common Abstractions