| 819 | } |
| 820 | |
| 821 | void SC::TestReport::printSectionResult(TestCase& testCase) |
| 822 | { |
| 823 | if (quietMode) |
| 824 | { |
| 825 | return; |
| 826 | } |
| 827 | console.print("\t- "); |
| 828 | console.print(testCase.numSectionTestsFailed > 0 ? redEMOJI : greenEMOJI); |
| 829 | console.print(" {}::{}\n", testCase.testName, currentSection); |
| 830 | console.flush(); |
| 831 | } |
| 832 | |
| 833 | void SC::TestReport::testCaseFinished(TestCase& testCase) |
| 834 | { |
no test coverage detected