(dartCodeDebugSessionID: string | undefined, suitePath: string)
| 428 | } |
| 429 | |
| 430 | public suiteDiscoveredConditional(dartCodeDebugSessionID: string | undefined, suitePath: string): SuiteData { |
| 431 | return this.suites.getForPath(suitePath) ?? this.suiteDiscovered(dartCodeDebugSessionID, suitePath); |
| 432 | } |
| 433 | |
| 434 | public suiteDiscovered(dartCodeDebugSessionID: string | undefined, suitePath: string): SuiteData { |
| 435 | const [suite] = this.getOrCreateSuite(suitePath); |
no test coverage detected