Python Unit Testing: Difference between revisions
Jump to navigation
Jump to search
(Created page with "A Python Unit Testing Task is a unit testing task for python function. * <B>See:</B> Java Unit Testing. ---- ---- == References == === 2022 === * https://pyt...") |
No edit summary |
||
Line 12: | Line 12: | ||
*** An alternative to the [[unittest module]] is [[pytest]]. | *** An alternative to the [[unittest module]] is [[pytest]]. | ||
*** There are several other [[unit testing modules]]: [[Nose module|Nose]], [[Tox]], [[unittest2]] and [[unittest.mock]]. | *** There are several other [[unit testing modules]]: [[Nose module|Nose]], [[Tox]], [[unittest2]] and [[unittest.mock]]. | ||
---- | ---- | ||
__NOTOC__ | __NOTOC__ |
Revision as of 18:24, 2 December 2022
A Python Unit Testing Task is a unit testing task for python function.
- See: Java Unit Testing.
References
2022
- https://pythonspot.com/python-unit-testing/
- QUOTE:
- The module unittest is a complete unit testing framework.
- An alternative to the unittest module is pytest.
- There are several other unit testing modules: Nose, Tox, unittest2 and unittest.mock.
- QUOTE: