blob: 7813c10ae2e033c31bd0d4b8151eeccd716f92a0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package lsp
import "testing"
func TestLogLLMStats_CoversCounters(t *testing.T) {
s := newTestServer()
s.incSentCounters(10)
s.incRecvCounters(20)
s.logLLMStats("model") // just ensure it does not panic and executes
}
|