Search Results

1
vote

Developers are dissatisfied with TDD. Is TDD really the problem, or is it lack of skill in novice practicitioners?

The first thing that caught my eye was: "Test code is throwaway code anyway". I mean, wow. Of course, the opposite is true with TDD. Your tests become your regression firewall, …
0
votes

Should I start using TDD on a project that doesn’t use it already

Writing tests for existing, working code that you don't plan to change doesn't fit with the thrust of TDD, which is to write tests that teach you about the system you're building. …
0
votes

How do I write unit tests in PHP?

Besides the excellent suggestions about test frameworks already given, are you building your application with one of the PHP web frameworks that has automated testing built in, such as …
2
votes

Outsourcing Classes by Supporting Unit Tests

I think unit tests might be valuable as specifications, but not complete. You're still going to have to make sure they understand the business value they're trying to deliver, where it fits in the …
1
vote

What is Best for Defect Rate Tracking? Defects per KLOC?

I'm skeptical of all LOC-related measurements, not just because of different relative expressiveness of languages, but because individual programmers will vary enough in the expressiveness of their …
1
vote

In test driven development, do you write every possible test first, then the code?

You could do that, but you wouldn't be doing TDD. The problem (well, one of them, anyway) with writing all of your tests up front is that in any case where the requirements are non-trivial, your t …
2
votes

If you change code that has a unit test against it, which do you change first?

I'll admit that I sometimes cheat. If a change is simple enough that I can know the outcome with certainty, I will sometimes change code, then tests. Like if I'm multiplying one number by a const …
0
votes

Designing a poker parser in Ruby

I'd recommend the book Refactoring by Martin Fowler (available in both dead-tree and electronic formats, IIRC). He covers object-oriented remedies for exactly the design problems you're a …
1
vote

TDD/BDD in particular for a Rails application

I wouldn't drill that far down. In fact, I don't usually test my migrations, and it's certainly not worth your time (in general) to test getters and setters. Stick to tests that teach you about t …
2
votes

Experiences with Test Driven Development (TDD) for logic (chip) design in Verilog or VHDL

I don't know a lot about hardware/chip design, but I am deeply into TDD, so I can at least discuss suitability of the process with you. The question I'd call most pertinent is: How quickly …
3
votes

Resources for TDD best practices, methods, etc

You want Test-Driven Development: By Example by Kent Beck and Refactoring by Martin Fowler. IMHO, they should be sold as a 2-volume set. TDD:BE covers things largely fr …