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?
|
|
|
|
|
|
|
Python has several testing frameworks, including |
||
|
|
|
|
There's testoob which is pretty complete suite of test.Also xUnit-ie, and has a nice reporting option |
||
|
|
|
|
There is also PyUnit which might be what you're looking for. |
||
|
|
|
|
@Greg: PyUnit is included in the standard library as |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
