(t *testing.T)
| 42 | } |
| 43 | |
| 44 | func TestPoolStats_HasASTPool(t *testing.T) { |
| 45 | stats := metrics.GetPoolStats() |
| 46 | if _, ok := stats["ast"]; !ok { |
| 47 | t.Error("expected 'ast' key in pool stats") |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | func TestPoolStats_RecordGet(t *testing.T) { |
| 52 | metrics.ResetPoolStats() |
nothing calls this directly
no test coverage detected