vote up 10 vote down star

Does Python have a unit testing framework compatible with the standard xUnit style of test framework? If so, what is it, where is it, and is it any good?

flag

8 Answers

vote up 14 vote down check

Python has several testing frameworks, including unittest, doctest, and nose. The most xUnit-like is unittest, which is documented on Python.org.

link|flag
vote up 3 vote down

There's testoob which is pretty complete suite of test.Also xUnit-ie, and has a nice reporting option

link|flag
vote up 0 vote down

There is also PyUnit which might be what you're looking for.

link|flag
vote up 2 vote down

@Greg: PyUnit is included in the standard library as unittest

link|flag
vote up 0 vote down

Consider py.test. Not exactly analogous to NUnit, but very good, with nice features including test auto-discovery and a "Watch the tests and code - when something changes rerun the tests that failed last time. As soon as all the tests pass, switch to running all the tests whenever somethings changes." option.

link|flag
vote up 0 vote down

Never used xUnit, so I can't tell you if the frameworks are good/bad comparativly, but here is a script I wrote which uses the unittest framework (to check the API works as it should), and the doctest (to check the examples I've given work)

My only problem is checking something raises an exception is slightly convoluted (you have to pass it a function/lambda that raises the exception, rather than just the command itself, like the rest of the framework).. Other than that, it does what it should, reliably, and it has been included in the default python distribution for quite some time.

link|flag
vote up 5 vote down

I recommend nose.

It is the most Pythonic of the unit test frameworks. The test runner runs both doctests and unittests, so you are free to use whatever style of test you like.

link|flag
vote up 0 vote down

I recommend Nose.

After the reasonable simple installation, you just have to run "nosetests" in your project folder and Nose will find all your tests and run them. I also like the collection of plugins (coverage, GAE, etc.) and the abilty to call Nose directly from within my Python scripts.

link|flag

Your Answer

Get an OpenID
or

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