(file: string)
| 111 | // Similar to isTestFile, but requires that the file is _test.dart because it will be used as |
| 112 | // an entry point for pub test running. |
| 113 | export function isRunnableTestFile(file: string): boolean { |
| 114 | return !!file && file.toLowerCase().endsWith("_test.dart") && isDartFile(file); |
| 115 | } |
| 116 | |
| 117 | export function isTestFolder(path: string | undefined): boolean { |
| 118 | return !!path |
nothing calls this directly
no test coverage detected