(t *testing.T)
| 28 | } |
| 29 | |
| 30 | func TestPoolStats_HasTokenizerPool(t *testing.T) { |
| 31 | stats := metrics.GetPoolStats() |
| 32 | if _, ok := stats["tokenizer"]; !ok { |
| 33 | t.Error("expected 'tokenizer' key in pool stats") |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | func TestPoolStats_HasParserPool(t *testing.T) { |
| 38 | stats := metrics.GetPoolStats() |
nothing calls this directly
no test coverage detected