()
| 480 | } |
| 481 | |
| 482 | getAllPatterns(): PatternUsageStats { |
| 483 | const stats: PatternUsageStats = {}; |
| 484 | |
| 485 | for (const category of this.patterns.keys()) { |
| 486 | const consensus = this.getConsensus(category); |
| 487 | if (consensus) { |
| 488 | stats[category] = consensus; |
| 489 | } |
| 490 | } |
| 491 | |
| 492 | return stats; |
| 493 | } |
| 494 | |
| 495 | /** |
| 496 | * Detect test framework from content using config-driven matching |
no test coverage detected