up vote 7 down vote favorite
5
share [g+] share [fb]

I just had a conversation with my lead developer who disagreed that unit tests are all that necessary or important. In his view, functional tests with a high enough code coverage should be enough since any inner refactorings (interface changes, etc.) will not lead to the tests being needed to be rewritten or looked over again.

I tried explaining but didn't get very far, and thought you guys could do better. ;-) So...

What are some good reasons to unit test code that functional tests don't offer? What dangers are there if all you have are functional tests?

Edit #1 Thanks for all the great answers. I wanted to add that by functional tests I don't mean only tests on the entire product, but rather also tests on modules within the product, just not on the low level of a unit test with mocking if necessary, etc. Note also that our functional tests are automatic, and are continuously running, but they just take longer than unit tests (which is one of the big advantages of unit tests).

I like the brick vs. house example. I guess what my lead developer is saying is testing the walls of the house is enough, you don't need to test the individual bricks... :-)

link|improve this question

Regarding the brick example: bricks are mass-produced, their are all the same, which is different from functions or units. – philippe Oct 13 '08 at 19:24
feedback

6 Answers

up vote 12 down vote accepted

Off the top of my head

  • Unit tests are repeatable without effort. Write once, run thousands of times, no human effort required, and much faster feedback than you get from a functional test
  • Unit tests test small units, so immediately point to the correct "sector" in which the error occurs. Functional tests point out errors, but they can be caused by plenty of modules, even in co-operation.
  • I'd hardly call an interface change "an inner refactoring". Interface changes tend to break a lot of code, and (in my opinion) force a new test loop rather than none.
link|improve this answer
I agree with the second two points - but functional tests can be automated too. – slim Oct 8 '08 at 12:15
@slim: While they can they are more likely to need refactored between releases IMHO – tloach Oct 8 '08 at 12:18
1  
@tloach - Not sure I understand. Surely functional requirements are more static than internal implementation? – slim Oct 8 '08 at 14:16
true, functional tests can be automated as well (we do it anyway for a limited set), but in the end you will need a human approval – NR. Oct 8 '08 at 16:28
@tloach - when automated functional test script needs to be frefctored then manual functional test script must be refactored also. – yoosiba Nov 24 '09 at 21:58
show 1 more comment
feedback

unit tests are for devs to see where the code failed

functional tests are for the business to see if the code does what they asked for

link|improve this answer
feedback

It can be a lot more difficult to find the source of problems if a functional test fails, because you're effectively testing the entire codebase every time. By contrast, unit tests compartmentalize the potential problem areas. If all the other unit tests succeed but this one, you have an assurance that the problem is in the code you're testing and not elsewhere.

link|improve this answer
feedback

unit tests are for devs to see where the code failed

functional tests are for the business to see if the code does what they asked for

unit tests are checking that you've manufactured your bricks correctly

functional tests are checking that the house meets the customer's needs.

They're different things, but the latter will be much easier, if the former has been carried out.

link|improve this answer
feedback

Bugs should be caught as soon as possible in the development cycle - having bugs move from design to code, or code to test, or (hopefully not) test to production increases the cost and time required to fix it.

Our shop enforces unit testing for that reason alone (I'm sure there are other reasons but that's enough for us).

link|improve this answer
feedback

If you use a pure Extreme Programing / Agile Development methodology the Unit tests are always required as they are the requirements for development.

In pure XP/Agile one makes all requirements based on the tests which are going to be performed to the application

  • Functional tests - Generate functional requirements.
  • Unit tests - Generate functions or object requirements.

Other than that Unit testing can be used to keep a persistent track of function requirements.

i.e. If you need to change the working way of a function but the input fields and output keep untouched. Then unit testing is the best way to keep tracking of possible problems as you only need to run the tests.

link|improve this answer
Isn't it usually the other way around - requirements, and then tests? – J. Polfer Oct 9 '09 at 14:58
feedback

Your Answer

 
or
required, but never shown

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