Posts Tagged ‘unit-testing’

A few of us have been reading this book as a part of a book club. Finally I think is time to push a review for this book . Let me start saying that my expectations for the book were very high, the book club helped because we were really reading it in depth and […]


Hi there Just though I d share this this is the way I ve been organizing my test code as of late public class MyClassTests { public class Given_a_context { [Fact] public void When_somthing_happens_Then_result() { throw new NotImplementedException(); } //…………… } public class Given_a_different_context { [Fact] public void When_somthing_happens_Then_result() { throw new NotImplementedException(); } //…………… […]


The Art of Unit Testing (by Roy Osherove) First Meetup Its amazing how much you can talk about just one chapter, ok we diverged at some point to related topics, we dreamed about our own Open Source project, again. Anyway, these are my thoughs about the first chapter, after the meeting Integration testing and unit […]


We are meeting for the first time for the Book club and just to get the ball rolling on this I though I’d write up a mini summary of chapter 1 on The Art of  Unit Testing before the meeting as a way to explore the concepts and then another one after if necesary. So […]


After some time messing with GWT-Ext I found a few problems on this front: – running the test takes too long ( I m writting this post as I wait for the tests to run) , for example to run a test like the one below, takes 10 seconds, and that is after you ran […]


Now Updated to add Rhino Commons