(dartCodeDebugSessionID: string, suitePath: string, testID: number, message: string)
| 678 | } |
| 679 | |
| 680 | public testOutput(dartCodeDebugSessionID: string, suitePath: string, testID: number, message: string) { |
| 681 | const suite = this.suites.getForPath(suitePath)!; |
| 682 | const test = suite.getCurrentTest(dartCodeDebugSessionID, testID); |
| 683 | |
| 684 | if (test) |
| 685 | this.testEventListeners.forEach((l) => l.testOutput(dartCodeDebugSessionID, test, message)); |
| 686 | } |
| 687 | |
| 688 | public testErrorOutput(dartCodeDebugSessionID: string, suitePath: string, testID: number, isFailure: boolean, message: string, stack: string) { |
| 689 | const suite = this.suites.getForPath(suitePath)!; |
nothing calls this directly
no test coverage detected