Tagged Questions
3
votes
6answers
858 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
98 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
282 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 { ...