You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: user_guide_src/source/testing/overview.rst
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,8 +95,10 @@ to help with staging and clean up::
95
95
protected function setUp(): void
96
96
protected function tearDown(): void
97
97
98
-
The static methods run before and after the entire test case, whereas the local methods run
99
-
between each test. If you implement any of these special functions make sure you run their
98
+
The static methods ``setUpBeforeClass()`` and ``tearDownAfterClass()`` run before and after the entire test case, whereas the protected methods ``setUp()`` and ``tearDown()`` run
99
+
between each test.
100
+
101
+
If you implement any of these special functions make sure you run their
100
102
parent as well so extended test cases do not interfere with staging:
0 commit comments