The tag has no wiki summary.

learn more… | top users | synonyms

-2
votes
1answer
37 views

TestFirst Teaching Pig Latin 'rspec_config failed' [closed]

I'm in the course of completing the Pig Latin exercise from TestFirst Teaching, but after I made the Ruby file and attempted to run rake, I got the following error: ...
0
votes
1answer
91 views

Test First's Temperature Object project - It passes all the tests, but is this what I was supposed to be learning?

I'm going through Test First's Ruby projects and I've done most of them but 08_temperature_object has me pretty confused, not least because even though I have gotten it to work passing the tests I'm ...
0
votes
2answers
42 views

Test Authorize Controller

i saw practice in TDD Book for Test Authorize Controller but i don't understand exactly what that means this is code Assert.IsTrue(typeof (TodoController) ...
0
votes
0answers
68 views

Looking for open-source test-last Java projects [closed]

For my graduate thesis I'm looking for several open-source test-last Java software projects. Although it's pretty easy to find projects which use a test-first approach, because that has been asked ...
6
votes
4answers
265 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 ...
2
votes
3answers
158 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
125 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
482 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 { ...
1
vote
0answers
155 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 ...
3
votes
4answers
269 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 ...
5
votes
4answers
187 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
5answers
249 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 ...
4
votes
3answers
271 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 ...
6
votes
6answers
2k 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 ...
84
votes
17answers
4k 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 ...