This course is provided by Wintrac.
Wintrac provides one stop shopping for all your IT training needs. Wintrac’s course catalog of over two thousand courses includes courses on
.NET training
.NET Training Overview
An emerging software engineering paradigm is test-driven development, where tests are written early and testing is performed continuously during the development process. Problems are discovered early and corrected when they are found. This one-day course for developers explains the methodology of test-driven development and the use of NUnit in supporting test-driven development on Microsoft .NET. It is current to .NET 4.0 and Visual Studio 2010. The course is practical, with many example programs and tests written in C#, including a cumulative case study. The goal is to quickly bring you up to speed in using NUnit in your .NET development projects. The student will receive a comprehensive set of materials, including course notes and all the programming examples.
.NET Training Audience
Application developers working in .NET
.NET Training Prerequisites
The student should have a basic knowledge of the .NET Framework and experience programming in C# with Visual Studio
.NET Training Course duration
1 day
.NET Training Course outline
1. Test-Driven Development
- Test-Driven Development
- Functional Tests
- Unit Tests
- Test Automation
- Rules for TDD
- Implications of TDD
- Simple Design
- Refactoring
- Regression Testing
- Test List
- Red/Green/Refactor
- Using the NUnit Framework
- Testing with NUnit
- Test Drive
- IQueue Interface and Stub Class
- Test List for Queue
- Using the NUnit GUI Tool
- A Second Test
- More Queue Functionality
- TDD with Legacy Code
- Acme Travel Agency Case Study
2. NUnit Fundamentals
- Structure of Unit Tests
- Assertions
- NUnit Framework
- NUnit Assert Class
- Assert.AreEqual()
- More Assert Methods
- Test Case
- Test Methods
- Test Fixture
- Test Runner
- Test Case Hierarchy
- Ignoring Tests
- Test Case Selection
- Coloring Parent Nodes
- Test Setup and Tear Down
- Test Fixture Setup and Tear Down
- Using NUnit with Visual Studio
3. More about NUnit
- Expected Exceptions
- Enqueue and Dequeue
- Tests for Enqueue and Dequeue
- ToArray()
- Test of ToArray()
- Debugging NUnit Tests
- Exceptions Dialog
- Custom Asserts
- Implementing a Custom Assert
- Categories
- Categories with NUnit
- Results as XML
- Running NUnit at the Command Line
- Using nunit-console.exe
- nunit-console.exe Options
- Categories at the Command Line
- Refactoring
- Collection Class Implementation
- Testing the New Version