(t *testing.T)
| 299 | } |
| 300 | |
| 301 | func TestTokenBasedStrategy_Name(t *testing.T) { |
| 302 | counter := NewGPT4Counter() |
| 303 | strategy := NewTokenBasedStrategy(counter, 0.7) |
| 304 | if strategy.Name() != "token-based" { |
| 305 | t.Errorf("Name() = %q, want %q", strategy.Name(), "token-based") |
| 306 | } |
| 307 | } |
| 308 | |
| 309 | func TestHybridStrategy_Compress(t *testing.T) { |
| 310 | config := DefaultWindowManagerConfig() |
nothing calls this directly
no test coverage detected