(t *testing.T)
| 35 | } |
| 36 | |
| 37 | func TestPoolStats_HasParserPool(t *testing.T) { |
| 38 | stats := metrics.GetPoolStats() |
| 39 | if _, ok := stats["parser"]; !ok { |
| 40 | t.Error("expected 'parser' key in pool stats") |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | func TestPoolStats_HasASTPool(t *testing.T) { |
| 45 | stats := metrics.GetPoolStats() |
nothing calls this directly
no test coverage detected