.NET news » Testing Testing Rss Feed

Catel - Part 4 of n: Unit testing with Catel

This article explains how to write unit tests for MVVM using Catel.
28 Jan 2011, 14:24:00   Source: Catel - Part 4 of n: Unit testing with Catel   Tags: Testing

Anti-Patterns: TED (Test-Eventually Development)

Software developers are good at writing applications. Testers are good at testing applications. In the software development world where separation of concerns is a never-ending quest, it seems logical to apply the rule to the software development cycle. “Let the developers code; QA can be responsible for making sure it works.” It provides an object-oriented management approach where each team is responsible only for what they are best at, and the two teams interface through one simple property, each: the result of their logic and expertise. The system is of logical design. It appears to be a logical pattern. Or so it seems.

27 Dec 2010, 18:00:00   Source: Anti-Patterns: TED (Test-Eventually Development)   Tags: Testing

Unit Testing CLR Assemblies Using IronRuby

For a very long time, .NET developers have envied the simplicity and the beauty of the Ruby language. The dynamic behavior, duck typing and compact code are some of the main features of the Ruby language. Now, .NET developers can enjoy the same benefits using the IronRuby framework. This article explores the possibilities of using IronRuby in the CLR world. The main focus will revolve around the sphere of unit testing CLR assemblies using the IronRuby framework.

28 Oct 2010, 19:00:00   Source: Unit Testing CLR Assemblies Using IronRuby   Tags: Testing

Fault Injection Testing with TestApi

Fault injection testing is the process of deliberately inserting an error into an application to determine whether it deals with the error properly. We’ll explain how you can introduce faults into .NET applications at run time using the Managed Code Fault Injection APIs of the TestApi library
29 Jul 2010, 19:00:00   Source: Fault Injection Testing with TestApi   Tags: Testing

Building and testing WCF web service using workflow foundation 4.0

Guide to build and test a simple web service in workflow foundation 4.0
21 Jul 2010, 11:14:00   Source: Building and testing WCF web service using workflow...   Tags: Testing

Developing and Unit Testing an ASP.NET MVC 2 Application

An introduction with AJAX, jQuery, JSON, MvcContrib and NUnit
15 Jun 2010, 13:37:00   Source: Developing and Unit Testing an ASP.NET MVC 2 Application   Tags: Testing

Unit Testing A Silverlight View Model Style Modal Popup

An example of a View Model Style Modal Popup Unit Test
6 May 2010, 21:36:00   Source: Unit Testing A Silverlight View Model Style Modal Popup   Tags: Testing

How to convince developers and management to use automated test instead of manual test

Everyone knows automated tests are good, unit test is good, we should all do it. But when you try to convince management that it's going to take double the time to deliver anything from now on, you are kicked out of the room. Learn how I convinced a dev lead to do automated test.
3 May 2010, 05:56:00   Source: How to convince developers and management to use...   Tags: Testing

Unit testing your App.config and ConfigurationSection using NUnit, Ninject and TestDriven.NET

This article is about really unit testing the different scenarios you have when working with configuration files:

  • What if the section is missing?
  • What if required fields are missing?
  • What values can I expect when optional fields are missing?
  • ...
10 Apr 2010, 07:37:00   Source: Unit testing your App.config and ConfigurationSection...   Tags: Testing

Isolating Dependencies in Tests Using Mocks and Stubs

Unit tests are not "unit" tests if they test things other than the System Under Test (SUT).
15 Jun 2009, 22:50:42   Source: Isolating Dependencies in Tests Using Mocks and Stubs   Tags: Testing