Tagged Questions

6
votes
4answers
109 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 ...
3
votes
4answers
186 views

Starting a new project - where do I start?

I am going to start a project of my own, which will be ASP.NET MVC + Fluent NHibernate. I want to use test-first approach as much as I can. So, where exactly do I start from? Database schema? Domain ...
3
votes
4answers
204 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 ...
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 ...
1
vote
0answers
110 views

Tips and tricks for test-first development

Just read this blog post - Help! I’m Terrible At Migrating/Restructuring Code In A Test-First Manner. I've had similar experiences, and thought I'd try an open it up to the wider community ...
0
votes
3answers
281 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 { ...