The Art of Unit Testing: with examples in C#

This document was uploaded by one of our users. The uploader already confirmed that they had the permission to publish it. If you are author/publisher or own the copyright of this documents, please report to us by using this DMCA report form.

Simply click on the Download Book button.

Yes, Book downloads on Ebookily are 100% Free.

Sometimes the book is free on Amazon As well, so go ahead and hit "Search on Amazon"

Summary The Art of Unit Testing, Second Edition guides you step by step from writing your first simple tests to developing robust test sets that are maintainable, readable, and trustworthy. You'll master the foundational ideas and quickly move to high-value subjects like mocks, stubs, and isolation, including frameworks such as Moq, FakeItEasy, and Typemock Isolator. You'll explore test patterns and organization, working with legacy code, and even "untestable" code. Along the way, you'll learn about integration testing and techniques and tools for testing databases and other technologies. About this Book You know you should be unit testing, so why aren't you doing it? If you're new to unit testing, if you find unit testing tedious, or if you're just not getting enough payoff for the effort you put into it, keep reading. The Art of Unit Testing, Second Edition guides you step by step from writing your first simple unit tests to building complete test sets that are maintainable, readable, and trustworthy. You'll move quickly to more complicated subjects like mocks and stubs, while learning to use isolation (mocking) frameworks like Moq, FakeItEasy, and Typemock Isolator. You'll explore test patterns and organization, refactor code applications, and learn how to test "untestable" code. Along the way, you'll learn about integration testing and techniques for testing with databases. The examples in the book use C#, but will benefit anyone using a statically typed language such as Java or C++. What's Inside * Create readable, maintainable, trustworthy tests * Fakes, stubs, mock objects, and isolation (mocking) frameworks * Simple dependency injection techniques * Refactoring legacy code

Author(s): Roy Osherove
Edition: 2
Publisher: Manning Publications
Year: 2013

Language: English
Pages: 296

PART 1 GETTING STARTED
1. The basics of unit testing
2. A first unit test

PART 2 CORE TECHNIQUES
3. Using stubs to break dependencies
4. Interaction testing using mock objects
5. Isolation (mocking) frameworks
6. Digging deeper into isolation frameworks

PART 3 THE TEST CODE
7. Test hierarchies and organization
8. The pillars of good unit tests

PART 4 DESIGN AND PROCESS
9. Integrating unit testing into the organization
10. Working with legacy code
11. Design and testability