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...") |
m (Text replacement - "ules]]" to "ule]]s") |
||
(11 intermediate revisions by the same user not shown) | |||
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> | * <B>Context:</B> | ||
** 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]]. | |||
** … | |||
* <B>Context:</B> | |||
** It can (typically) be performed by a [[Python Unit Testing System]]. | |||
** It can (typically) reference a [[Python Unit Testing Framework]]. | |||
** … | |||
* <B>Counter-Example(s):</B> | |||
** a [[Java Unit Testing]], [[JavaScript Unit Testing]]. | |||
* <B>See:</B> [[Python Unit Test]]. | |||
---- | ---- | ||
---- | ---- | ||
Line 11: | 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]]. | ||
---- | ---- | ||
__NOTOC__ | __NOTOC__ | ||
[[Category:Concept]] |
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: