vote up 10 vote down star
3

I'm trying to get started with unit testing in Python and I was wondering if someone could inform me of the advanatages and disadvantages of doctest and unittest. What conditions would you use each for?

flag

8 Answers

vote up 15 vote down check

Both are valuable. I use both doctest and a further unit testing framework (nose) taking the place of unittest. I use doctest for cases where the test is giving an example of usage that is actually useful as documentation. Generally I don't make these tests comprehensive, aiming solely for informative. I'm effectively using doctest in reverse: not to test my code is correct based on my doctest, but to check that my documentation is correct based on the code.

The reason is that I find comprehensive doctests will clutter your documentation far too much, so you will either end up with either unusable docstrings, or incomplete testing.

For actually testing the code, the goal is to thoroughly test every case, rather than illustrate what is does by example, which is a different goal which I think is better met by other frameworks.

link|flag
Why use nose over unittest? – Sean Dec 12 '08 at 16:47
1  
There's a lot less boilerplate, and I find tests much simpler to write (and read). The low startup cost to write tests (ie just write a "test_foo()" function and go) also helps fight off the temptation to do the interesting code bits before nailing down your tests. – Brian Dec 12 '08 at 16:56
I think this is a fantastic answer. – Alabaster Codify Jan 29 at 1:28
vote up 1 vote down

Another advantage of doctesting is that you get to make sure your code does what your documentation says it does. After a while, software changes can make your documentation and code do different things. :-)

link|flag
vote up 1 vote down

I prefer the discovery based systems ("nose" and "py.test", using the former currently).

doctest is nice when the test is also good as a documentation, otherwise they tend to clutter the code too much.

link|flag
nose looks incredibly useful; I haven't gotten a chance to use it yet, but I've got high hopes :) – Tony Arkles Dec 12 '08 at 16:47
nose is pretty much the easiest test framework to use, IMO. It makes writing and running test cases pretty much effortless. – Kamil Kisiel Dec 12 '08 at 17:38
vote up 3 vote down

Using both is a valid and rather simple option. The doctest module provides the DoctTestSuite and DocFileSuite methods which create a unittest-compatible testsuite from a module or file, respectively.

So I use both and typically use doctest for simple tests with functions that require little or no setup (simple types for arguments). I actually think a few doctest tests help document the function, rather than detract from it.

But for more complicated cases, and for a more comprehensive set of test cases, I use unittest which provides more control and flexibility.

link|flag
vote up 2 vote down

I use unittest exclusively; I think doctest clutters up the main module too much. This probably has to do with writing thorough tests.

link|flag
vote up 1 vote down

I almost never use doctests. I want my code to be self documenting, and the docstrings provide the documentation to the user. IMO adding hundreds of lines of tests to a module makes the docstrings far less readable. I also find unit tests easier to modify when needed.

link|flag
vote up 2 vote down

If you're just getting started with the idea of unit testing, I would start with doctest because it is so simple to use. It also naturally provides some level of documentation. And for more comprehensive testing with doctest, you can place tests in an external file so it doesn't clutter up your documentation.

I would suggest unittest if you're coming from a background of having used JUnit or something similar, where you want to be able to write unit tests in generally the same way as you have been elsewhere.

link|flag
vote up 10 vote down

I use unittest almost exclusively.

Once in a while, I'll put some stuff in a docstring that's usable by doctest.

95% of the test cases are unittest.

Why? I like keeping docstrings somewhat shorter and more to the point. Sometimes test cases help clarify a docstring. Most of the time, the application's test cases are too long for a docstring.

link|flag

Your Answer

Get an OpenID
or

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