58 testName: str # name of the test function |
58 testName: str # name of the test function |
59 failFast: bool # stop on first fail |
59 failFast: bool # stop on first fail |
60 failedOnly: bool # run failed tests only |
60 failedOnly: bool # run failed tests only |
61 collectCoverage: bool # coverage collection flag |
61 collectCoverage: bool # coverage collection flag |
62 eraseCoverage: bool # erase coverage data first |
62 eraseCoverage: bool # erase coverage data first |
|
63 coverageFile: str # name of the coverage data file |
63 |
64 |
64 |
65 |
65 class TestExecutorBase(QObject): |
66 class TestExecutorBase(QObject): |
66 """ |
67 """ |
67 Base class for test framework specific implementations. |
68 Base class for test framework specific implementations. |