mirror of
https://github.com/python/cpython.git
synced 2025-11-01 02:38:53 +00:00
Fix awkwardly rendered sentence.
This commit is contained in:
parent
fb2d167e26
commit
833ad0eede
1 changed files with 3 additions and 3 deletions
|
|
@ -352,9 +352,9 @@ Organizing test code
|
|||
|
||||
The basic building blocks of unit testing are :dfn:`test cases` --- single
|
||||
scenarios that must be set up and checked for correctness. In :mod:`unittest`,
|
||||
test cases are represented by instances of :mod:`unittest`'s :class:`TestCase`
|
||||
class. To make your own test cases you must write subclasses of
|
||||
:class:`TestCase`, or use :class:`FunctionTestCase`.
|
||||
test cases are represented by :class:`unittest.TestCase` instances.
|
||||
To make your own test cases you must write subclasses of
|
||||
:class:`TestCase` or use :class:`FunctionTestCase`.
|
||||
|
||||
An instance of a :class:`TestCase`\ -derived class is an object that can
|
||||
completely run a single test method, together with optional set-up and tidy-up
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue