Python Unit Testing Task: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - ". ↵" to ". ") |
m (Text replacement - "ules]]" to "ule]]s") |
||
Line 22: | Line 22: | ||
*** The module [[unittest]] is a complete [[unit testing framework]]. | *** The module [[unittest]] is a complete [[unit testing framework]]. | ||
*** An alternative to the [[unittest module]] is [[pytest]]. | *** An alternative to the [[unittest module]] is [[pytest]]. | ||
*** There are several other [[unit testing | *** There are several other [[unit testing module]]s: [[Nose module|Nose]], [[Tox]], [[unittest2]] and [[unittest.mock]]. | ||
---- | ---- |
Latest revision as of 21:04, 9 May 2024
A Python Unit Testing Task is a unit testing task for python function.
- Context:
- It can be solved by a Python Unit Testing Process (supported by a python unit testing system - possibly built on a python unit testing framework).
- It can range from being an Automated Puthon Unit Testing Task to being a Manual Python Unit Testing Task.
- …
- Context:
- It can (typically) be performed by a Python Unit Testing System.
- It can (typically) reference a Python Unit Testing Framework.
- …
- Counter-Example(s):
- See: Python Unit Test.
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: