Code Coverage in Development Phase

Let’s consider how code coverage and other similar processes, as requested, fit within the workflow of an application during design and development. I think of this in the following stages: Local development – quality analysis Centralized build – quality analysis Test coverage workflow (next post) Test case coverage evaluation (next post) Local Development – Quality… Continue reading Code Coverage in Development Phase

.Net Development and Unit Testing Tutorial

Summary The goal of this tutorial is to learn to create C# programs, learn to compile, execute, and debug them, learn unit testing, and learn some general error handling. Overview The .Net Framework is installed on every Windows machine so you can create and compile a program without installing any other components. Visual Studio is the integrated… Continue reading .Net Development and Unit Testing Tutorial

Debugging Windows Crashes with Microsoft Debugging Tools – Tutorial

  Summary The goals of this Tutorial are to understand what a crash is, learn how to explicitly create a crash in code, use tools to analyze a crash, and learn how to gather information to file a defect. This will cover basic debugging, not advanced. Overview The dictionary definition of “crash” does not really… Continue reading Debugging Windows Crashes with Microsoft Debugging Tools – Tutorial