Using shims in Visual Studio 2012 Ultimate lets you easily bypass code—no matter how deeply buried—to test just the parts of your application that you want to test. In my last column I discussed the ...
From time to time, I’ve found that mocking various dependencies can be helpful in testing behavior. Briefly, mocking an object allows you to fake its behavior so as to more fully isolate some other ...
A common thing I come across is that teams using a mocking framework assume they are mocking. They are not aware that Mocks are just one of a number of ‘Test Doubles’ which Gerard Meszaros has ...
Whether you're a seasoned Java programmer or a Java neophyte, testing Java applications is important. It ensures your application does what it's supposed to. Fortunately, there are plenty of automated ...