Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb2d167 commit 833ad0eCopy full SHA for 833ad0e
1 file changed
Doc/library/unittest.rst
@@ -352,9 +352,9 @@ Organizing test code
352
353
The basic building blocks of unit testing are :dfn:`test cases` --- single
354
scenarios that must be set up and checked for correctness. In :mod:`unittest`,
355
-test cases are represented by instances of :mod:`unittest`'s :class:`TestCase`
356
-class. To make your own test cases you must write subclasses of
357
-: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`.
358
359
An instance of a :class:`TestCase`\ -derived class is an object that can
360
completely run a single test method, together with optional set-up and tidy-up
0 commit comments