Size: 670
Comment: add two other unit test framework
|
← Revision 10 as of 2024-07-06 16:50:15 ⇥
Size: 1240
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 5: | Line 5: |
* PyUnit -- heavy-weight Java-derived unit testing system * DocTest -- lightweight unit testing in doc strings * PyTest -- alternative and easy-to-use unit test system for Python * TestOob -- extended features, integrates with PyUnit tests * [[nose]] -- a discovery-based unittest [[extension]] * [[https://github.com/Yelp/Testify/wiki|Testify]] -- a pythonic testing framework * [[http://www.pocoo.org/projects/attest/|Attest]] -- a framework for unit testing that follows modern idioms and conventions of Python |
* [[https://docs.python.org/3/library/unittest.html|Unittest]] -- full-featured unit testing system, inspired by Java's JUnit. Part of the Python Standard Library (as an external project it was called PyUnit). * [[https://docs.python.org/3/library/doctest.html|DocTest]] -- lightweight testframework, allows you to embed tests directly in the docstrings, making it easy to combine code examples and test cases in one place. Part of the Python Standard Library. * [[https://docs.pytest.org|PyTest]] -- alternative to PyUnit and with a simpler syntax. * [[https://docs.nose2.io/en/latest/|nose2]] -- a discovery-based framwork that extends unittest (successor to `nose`). * [[https://github.com/Yelp/Testify/wiki|Testify]] -- Pythonic testing framework compatible with unittest tests. * [[https://robotframework.org/|Robot]] -- Framework for test automation and robotic process automation (not just for Python). * [[https://pypi.org/project/lettuce/|Behave]] -- Framework for Behavior-Driven Development. * [[https://hypothesis.works/|Hypothesis]] -- Powerful property-based testing. |
Contents
Python Testing Frameworks
Unittest -- full-featured unit testing system, inspired by Java's JUnit. Part of the Python Standard Library (as an external project it was called PyUnit).
DocTest -- lightweight testframework, allows you to embed tests directly in the docstrings, making it easy to combine code examples and test cases in one place. Part of the Python Standard Library.
nose2 -- a discovery-based framwork that extends unittest (successor to nose).
Testify -- Pythonic testing framework compatible with unittest tests.
Robot -- Framework for test automation and robotic process automation (not just for Python).
Behave -- Framework for Behavior-Driven Development.
Hypothesis -- Powerful property-based testing.
These are useful for TestDrivenDevelopment
See also: TestHarnessDesign