Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Developers have many different options out there to create fast and relatively maintainable unit test suites. But this takes a great deal of knowledge involved in decoupling modules of code, isolating the code under test within its test context, and using test doubles (stubs, fakes, mocks). What's more confusing is that within the concept of doubling itself, there are many different approaches that are vastly different from one another:

  • Using dynamic languages/metaprogramming or instrumentation approaches to override implementations of methods (even static methods or initializers) for the duration of a test run.
  • Interaction based approaches based on defining expectations and recording expected calls on doubles.
  • Using "fake" double implementations provided for testing with a third-party framework you're using.
  • Creating your own stubs.

This means while someone may be familiar with the "mock" objects (I prefer to call these fakes) provided by SpringMVC, for instance, some interaction-based mocking code can leave the same person scratching their head. (Is this what happened to Hitler's developers?)

My experience has been (and I suspect others have seen this, too) that very few developers are familiar with this requisite knowledge, and even fewer have enough expertise to develop suites that are somewhat maintainable. (Let's face it, maintainability is a very relative term when we're talking about tests!) Furthermore, often I'll see developers break a test they aren't familiar with and their first instinct is to comment it out rather than fix the test or the code that is broken. Time is often lost in the long-run, but it seems less painful initially.

On your team, how have you dealt with educating and addressing maintenance problems that come about when we don't understand each others' test code?

share|improve this question

2 Answers

up vote 6 down vote accepted

I work in a 15 member team in a company that's anal about Test Driven Development, so we come across this problem fairly often. The reason I say fairly often rather than 'every five minutes' is because we try to follow these practices:

  1. Pair programming and pair rotation: although only a few members at the beginning have the know how and experience for TDD, pairing very quickly spreads the knowledge around. We have freshers who come in, work with the people for one week, and start lecturing on testing strategies. This also involves rotating the pairs, so everyone works with everyone else regularly.

  2. Keep great test naming conventions: We try to name our tests very expressively. Examples include public void testThatSavingTheOrderDispatchesItBeforeWritingToTheDB(). While it may seem funny, this makes for very productive testing, especially when coupled with sensible and readable method and variable names.

  3. We also read up on the latest mock and testing frameworks available. Tools like Mocha / RSpec (Ruby) and JUnit / Mockito (Java) are very powerful and can be learned in a short while. There is a learning curve, but its well worth the effort.

  4. Once you choose a testing and mocking framework, keep only that framework. The top few frameworks in any language are usually only different in terms of syntax, not power. So there isn't any reason to pollute the code with more than one way to do the same thing.

  5. Nothing beats training, self motivation, and working closely with those who already know. I've learnt the most testing in one hour working with a fellow programmer who worked with a senior programmer for two weeks :D

share|improve this answer
1  
I'm sure how much pair programming will be accepted in other organizations, but at least try to keep communication / mentorship / training levels high. – Sudhir Jonathan Jul 2 '09 at 19:55
Good point regarding pairing. I'd love to do this but the client won't officially allow it. We do it informally and at the very least try to review each others' code. – cwash Jul 2 '09 at 19:59
True, too many people don't see the advantages in pair programming... but yeah, it has big advantages whether or not you're trying to work in an agile environment. Both parties wind up writing better code :) – Sudhir Jonathan Jul 4 '09 at 18:07

I have found the following have helped:

  • Create and enforce naming conventions for tests.
  • Follow the Arrange, Act, Assert pattern, no matter what.
  • Consider extensive setup methods a code-smell in tests (see comments on this answer for more discussion.)
  • Create good examples and exercises for each doubling technique.
  • Post visual feedback of test metrics where other team members can see.
share|improve this answer
I'm curious as to why you consider setup methods to be a code smell. An indicator that the class under test is hard to instantiate? – Mark Roddy Jul 2 '09 at 20:19
It makes the tests harder to read (say, look at quickly when broken and figure out how to fix). They have their place, but I think tests don't have to be perfectly DRY. It's OK if they contain some duplication (and it's OK if they have to use a setup) as long as they are focused and the team understands them. – cwash Jul 2 '09 at 20:35
@Mark - to clarify, it's a code-smell for the test code. The bigger the setup, the smellier the test. Also, the more you have in your setup, the bigger your test context is. The bigger your test context is, the less maintainable your test will be. – cwash Jul 2 '09 at 20:41
See this link for more info: jamesnewkirk.typepad.com/posts/2007/09/why-you-should-.html – cwash Jul 2 '09 at 21:02
@cwash I totally agree that in the example given in that blog post that the setUp method was causing more harm then good and should be removed. However, this doesn't necessarily translate to the setUp method should never be used or out right removed (the blog author's words, not anyone's here). – Mark Roddy Jul 2 '09 at 21:33
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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