36
votes
15answers
2k views
How do you unit test a unit test?
I was watching Rob Connerys webcasts on the MVCStoreFront App, and I noticed he was unit testing even the most mundane things, things like:
public Decimal DiscountPrice
{
get
{
return …
3
votes
4answers
124 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 …
3
votes
2answers
140 views
TDD: How would you work on this class, test-first style?
Hi there,
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 …
2
votes
3answers
83 views
Test-First development tool for SQL Server 2005?
For several years I have been using a testing tool called qmTest that allows me to do test-driven database development for some Firebird databases. I write a test for a new feature (table, trigger, …
1
vote
6answers
302 views
Is there a difference between TDD and Test First Development (or Test First Programming)?
Both ideas sound very similar to me, but there might be subtle differences or the exact same thing, explained in different ways. What is the relationship between TDD and Test First …
