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 d9fce89 commit e61bb2dCopy full SHA for e61bb2d
tests_integration/lib/test_case.py
@@ -8,6 +8,10 @@
8
class TestCase(ABC):
9
"""
10
Abstract base class for a single test case in a scenario.
11
+ Per test case, there is exactly one instance of this class statically created
12
+ in the definition of the ALL_TEST_CASES list of the feedstock module.
13
+ Note that a test case (i.e. an instance of this class) might be run multiple times,
14
+ so be careful with state you keep in the instance.
15
16
17
def get_router(self) -> APIRouter:
0 commit comments