Tagged Questions

4
votes
3answers
197 views

TDD: How would you work on this class, test-first style?

I am writing a small app to teach myself ASP.NET MVC, and one of its features is the ability to search for books at Amazon (or other sites) and add them to a "bookshelf". So I created an interface ...
3
votes
4answers
208 views

Test writing strategy advice

So, I'm getting more and more engulfed with test driven development these days and the more code I write while thinking tdd, the more decisions it's seems as though I have to make about the extent of ...
0
votes
3answers
290 views

How to develop a StopWatch class test first?

I'm currently trying to implement a StopWatch class. The interface is something like: interface IStopWatch { void Run(); void Stop(); int SecondsElapsed { get; } int MinutesElapsed { ...