vote up 9 vote down star
6

I do write unit tests while writing APIs and core functionalities. But I want to be the cool fanboy who eats, sleeps and breathes TDD and BDD. What's the best way to get started with TDD/BDD the right way? Any books, resources, frameworks, best practices?

My environment is Java backend with Grails frontend, integrated with several external web services and databases.

flag
Testing for the web is hard. You inevitably need to test view code, and too many people try to do this by testing for the existence of a string inside the raw HTML. That's just messy. It's better to test view code primarily in integration tests with something like Selenium. – Bob Aman Oct 23 at 22:38

9 Answers

vote up 4 vote down check

A good place to start is reading blogs. Then buy the books of the people who are blogging. Some I would highly recommend:

"Uncle Bob" Martin and the guys at Object Mentor: http://blog.objectmentor.com/

P.S. get Bobs book Clean Code:

http://www.amazon.com/Clean-Code-Handbook-Software-Craftsmanship/dp/0132350882

My friend Tim Ottinger (former Object Mentor dude) http://agileinaflash.blogspot.com/ http://agileotter.blogspot.com/

The Jetbrains guys: http://www.jbrains.ca/permalink/285

I felt the need to expand on this, as everyone else seems to just want to give you their opinion of TDD and not help you on your quest to become a Jedi-Ninja. The Michael Jordan of TDD is Kent Beck. He really did write the book on it:

http://www.amazon.com/Test-Driven-Development-Kent-Beck/dp/0321146530

he also blogs at:

http://www.threeriversinstitute.org/blog/?p=29

other "famous" supporters of TDD include:

All are great people to follow. You should also consider attending some conferences like Agile 2010, or Software Craftsmanship (this year they were held at the same time in Chicago)

link|flag
This is what I was looking for. – Erlanged Oct 24 at 17:25
Updated with 90% more Ninjas – ryber Oct 26 at 14:15
vote up 5 vote down

I don't like it when people say "Practice X is never bad; if it doesn't work, you're not doing it right." Sorry, it has the same feel as any other over-zealous religious dogma. I don't buy it.

I agree with those folks who say that the best solution your time and money can afford should be the goal.

Anyone who objects to TDD should not automatically be accused of disregarding quality. ("So when did you stop beating your wife?") The fact is that software has bugs in it, and the cost of eliminating all of them has to be weighed against the benefit.

The same holds true in manufacturing. Tolerances on dimensions and finishes on surfaces are not all the same, because sometimes a close tolerance and a mirror finish aren't warranted.

Yes, I write unit tests, although not often before I write the class. I've seen the effect of tests on design. I measure and watch code coverage. If I find that my coverage isn't acceptable, I write more tests. I understand the benefit of a safety net of unit tests for refactoring. I follow those practices even when I'm working alone, because I've experienced the benefits first-hand. I get it.

But I'd look askance at any teammate that started bugging me about "eating, sleeping, and breathing unit testing and TDD."

My manager says that the only way that will get me a promotion is if I can get the team to TDD/BDD.

Ever think that maybe this makes you sound like a suck-up? Have you found that your nagging has alienated the rest of your team?

This response might lose me a few reputation points, but it had to be said.

I think a better approach would be to practice it yourself and let others see the benefit. Lead by example. It'll be far more persuasive than running your mouth.

Geez, Grails has test generation built-in. If you're working on a team that uses Grails, how much more selling is needed?

link|flag
+1 You won't lose a point for saying this. I was being satirical about "eating , sleeping and breathing TDD" as my manager is more obsessed with the buzzword TDD than quality of the product. – Erlanged Oct 24 at 1:11
Sorry, satire and sarcasm are filtered out by my browser. I misunderstood your intent. – duffymo Oct 24 at 1:16
Depends on how they object to TDD. If you were "eating, sleeping, beathing" testing, I'd say your focus is on the wrong thing. But TDD is not testing. TDD is an entire development process, and assuming that you don't mind your entire life being development, I've got no problems with someone who says they want to "eat, sleep, and beath" TDD. Sarcasm notwithstanding. – Bob Aman Oct 24 at 17:38
BTW, there are plenty of problem domains for which TDD doesn't really work. Game development for example. You can unit test a fair amount of stuff in a game, but there's still huge swaths of code that are going to be all but untestable. This throws a wrench in the works for TDD. – Bob Aman Oct 24 at 17:42
That said, people have still managed to do TDD even in a game development environment (mocking graphics API calls, mocking controller inputs, etc.) gamesfromwithin.com/backwards-is-forward-making-b… – Bob Aman Oct 24 at 17:49
show 2 more comments
vote up 4 vote down

Best practice IMHO: Do what is practical and not just because it is a process. Don't forget what the goal of writing applications is, and in the business world, it isn't writing tests. Don't get me wrong, they have their place, but that shouldn't be the goal.

link|flag
2  
People who've never done good TDD give this advice all the time. Sometimes they've done it, but upon further inquiry, it becomes clear that what they were doing was more like bad TDD, and most of their problems stem from bad practices rather than TDD itself. – Bob Aman Oct 23 at 22:33
You got me, I, guess I've never actually done any "real" TDD. Actually, what I said was they do provide value when used correctly, but you have to be careful that your focus is on providing a solution and not JUST writing tests. – wilums2 Oct 23 at 23:04
Connotations are just as important as the literal words. What you said was factually true, but that's all that can be said to commend it. Not even the die-hard TDD people think that "tests are the goal". I call strawman. The goal is reliable code, with low maintenance cost, and short development time. Tests get you there, and if you're doing TDD right, you have to be up near 80%+ coverage before you start seeing diminishing returns for additional tests. In practice, this essentially means that almost every test you write will increase your productivity in the long-run. – Bob Aman Oct 24 at 1:06
1  
IMHO (and the HO of a lot of people smarter than me) If you don't have tests then you simply do not have working code. Tests are not a nice to have, they are a necessity and a requirement. Unless of course you enjoy having long dev cycles, buggy code that nobody knows how it works and a entire division of QA workers. – ryber Oct 24 at 13:33
1  
gosh, what did we do before TDD? – wilums2 Oct 25 at 3:50
vote up 4 vote down

Find someone that has been doing TDD/BDD and pair program with them.

link|flag
vote up 3 vote down

Metrics are, IMHO, the best way to get from here to there. Keep track of how well your code is covered, keep deltas of code complexity for every commit, use test-runners that watch your code for changes and constantly re-run the corresponding tests. Never let test lengths get above a few lines, so that all your tools work well. And I'd recommend once a month, take a day off to run your code through a mutation tester. That day should be dedicated to writing tests only. All of this stuff will bring you pain if you're not already doing good TDD. Learn from the pain, and in no time at all, you'll be doing it right.

And never lose sight of what the tests are for: To describe desired behavior. They are your executable specification. (This is also why I like Cucumber; now you can get your PHB to write your tests for you! Well, maybe not quite that good, but it's close!)

link|flag
1  
+ 1 "And never lose sight of what the tests are for: To describe desired behavior." – Erlanged Oct 24 at 1:14
Could you recommend any mutation tester? – Thorbjørn Ravn Andersen Oct 24 at 13:16
Heckle, Pester, Jester for Ruby, Python, and Java respectively. – Bob Aman Oct 24 at 17:27
+1 for Cucumber link, very interesting! – Thorbjørn Ravn Andersen Oct 24 at 17:37
vote up 1 vote down

For start do unit testing, then read about how to do it right last teach your team how to TDD and get them on board - because in my experience nothing is more important then doing unit testing with your whole team.

You'll also need a proper build process - using a build server that would build your code and run your testst I recommend using TeamCity (free with limitations).

Learning how to right good unit tests is the hard part - some of it you'll learn by yourself (as long as you keep unit testing) and the rest you can learn from searching the internet.

You'll know you've reached your goal when NOT writing unit tests as part of development will look to you just wrong.

link|flag
We do have a build process and some tests, but those were outsourced. – Erlanged Oct 24 at 1:13
vote up 1 vote down

Remember, agile means that you're not completely sold out on any particular method. If you're working on something where the benefits of TDD aren't worth it (like doing trial-and-error edits on a Swing interface), then don't use TDD.

link|flag
Does TDD always have to be a part of Agile? – Erlanged Oct 24 at 1:12
I thought agile meant that the we have no requirements on paper, and the project manager can come by my desk and ask me to add this little feature or that little feature whenever he felt like it. – JimN Oct 24 at 3:10
LOL, that's what some project managers want it to be. But no. – Kaleb Brasee Oct 24 at 4:08
vote up 1 vote down

"PS: My manager says that the only way that will get me a promotion is if I can get the team to TDD/BDD."

The only realistic way to get a team to do something (without killing you in the process) is to demonstrate to them clearly that it will benefit them to change their habits. In other words, write code. Lots of code. Tons of code. And then when the crucial email arrive that alters the specification radically, show them that you can change your code easily with refactoring and whats worse because you were prepared for it with your tests in place. The bar was green, hack hack hack, RED BAR!!!!, hack hack hack, green bar, go home.

Read Kent Becks book about test driven design. Start with tests and then do the code. Get a build server running which RUNS THE TESTS! You do not need ot have it for the whole team - do it for yourself and SHOW them that it helps.

Preaching only annoys natives :)

link|flag
vote up 1 vote down

I can't see that anybody has really expressed that TDD is not about testing. TDD-ing is about expressing the expected behaviour before doing the tiny behavioural-changing modification. This greatly improves design and enables focusing in a way I have never experienced before. You get tests that protects your future refactorings and 90% coverage for free.

To learn it I would suggest (summarising what others have said and adding one of my own):

  1. visit the blogs and read the books mentioned above
  2. pair up with someone proficient in TDD
  3. practice

I practiced the Bowling kata (exercise) on my own about 20 times (about 30 minutes apiece) before I started to see the light. Started out by analysing Uncle Bob's description of it here. There are a host of katas on the codingdojo.org site including solutions and discussions. Try them!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.