Python Unit Testing Task: 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 1: | Line 1: | ||
A [[Python Unit Testing Task]] is a [[unit testing task]] for [[python function]]. | A [[Python Unit Testing Task]] is a [[unit testing task]] for [[python function]]. | ||
* <B>Context:</B> | |||
** It can (typically) reference a [[Python Unit Testing Framework]]. | |||
** ... | |||
* <B>See:</B> [[Java Unit Testing]]. | * <B>See:</B> [[Java Unit Testing]]. | ||
---- | ---- |
Revision as of 18:50, 2 December 2022
A Python Unit Testing Task is a unit testing task for python function.
- Context:
- It can (typically) reference a Python Unit Testing Framework.
- ...
- 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: