Browse by Tags
All Tags »
Moles (
RSS)
Chess - Deterministic parallel testing modern software development is drifting in the direction of Parallel Computing . even those the tools and libraries for Parallel Computing is continuously improving, we still left with the old problem of how to test the non deterministic execution nature of Parallel Computing programming. this post will focus on the Chess testing framework, which is trying to solve the non deterministic testing issue. you can download the chess framework...
Pex – test input generator this post will focus on the Pex tool. Pex is an automatically test input generates. it try to get both high code coverage and potential failures . you can download Pex from here . So why do we need another testing tool? Pex does not intend to replace any of the existing testing frameworks , in matter of fact, its generated test can be saved as testing code using any of the leading testing frameworks. When to use Pex? i guess it would be smart...
Moles – isolate your test unit this post will focus on the Moles - Isolation framework for .NET . you can download the Moles framework from here , or even better download the Pex testing framework (that includes Moles) from here . (I will survey the Pex framework in one of the upcoming posts). the code sample for this post is available here . How do you test the correctness of the following method? Code Snippet public class MyComponent { private DateTime...