| 843 | bool SC::TestReport::isTestEnabled(StringSpan testName) const { return testToRun.isEmpty() || testToRun == testName; } |
| 844 | |
| 845 | bool SC::TestReport::isSectionEnabled(StringSpan sectionName) const |
| 846 | { |
| 847 | return sectionToRun.isEmpty() || sectionName == sectionToRun; |
| 848 | } |
| 849 | |
| 850 | int SC::TestReport::getTestReturnCode() const { return startupFailure || numTestsFailed > 0 ? -1 : 0; } |
| 851 |