The moose likes Testing and the fly likes functional tests vs. unit tests Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Engineering » Testing
Reply Bookmark "functional tests vs. unit tests" Watch "functional tests vs. unit tests" New topic
Author

functional tests vs. unit tests

paul wheaton
Trailboss

Joined: Dec 14, 1998
Posts: 17866

This thread is in response to the section of the unit testing article called "The Trouble With Too Many Functional Tests".

This message was edited 1 time. Last update was at by paul wheaton

Ernest Friedman-Hill
author and iconoclast
Marshal

Joined: Jul 08, 2003
Posts: 23240

Designing code that can be truly unit tested is an art. It's not something that every Joe Programmer off the street knows how to do well. The article should acknowledge this fact more. It's easy to make these recommendations, but harder to make people understand that they're really achievable.


[Jess in Action][AskingGoodQuestions]
Jeanne Boyarsky
internet detective
Marshal

Joined: May 26, 2003
Posts: 23149

"I don't mind if my unit test suite takes a few minutes to run." But do the other people on your team mind? Does your team lead mind? Your manager? If it take a few minutes instead of a few seconds, do you still run the full suite a dozen times a day? At what point do people stop running the tests at all?

We've never gotten to the point where the unit test suite takes too long for us all to run frequently. It's 1-2 minutes for a few thousand tests.

With the "short running" integration tests, after 6-10 minutes we all stopped running the full suite of tests. That was a sign that it needed refactoring and we got down to a more manageable amount.

I learned that a key here is that people don't always complain the tests are slow. Just slowly stop running them.


[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Certs: SCEA Part 1, Part 2 & 3 & Core Spring 3
 
 
subject: functional tests vs. unit tests
 
MyEclipse, The Clear Choice