Tagged Questions
75
votes
17answers
3k 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 ...
6
votes
4answers
116 views
Understanding the difference between “test-first” and “test-driven”
I've had conversations about this topic in the past, and I think I might know the answer, but I've not been able to articulate it properly.
Here's what I think I know:
I suspect you are test-first ...
5
votes
4answers
154 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, ...
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 ...
3
votes
6answers
876 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 ...
2
votes
3answers
100 views
How to conciliate TDD with SUT interface's contracts?
Assuming we are implementing using TDD a Stack class, we would need, for each bit of functionality of our Stack class, to add a new test that exercises it:
[TestMethod] public void ...
1
vote
4answers
107 views
Couple of questions about unit-testing
Let's assume we are designing a Stack class test-first (TDD):
public class Stack<T> {
private T[] elements = new T[16];
private int size = 0;
...
}
This Stack makes use of a size ...
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 { ...