blob: 43582a23a34e91223f157d9c3ec276b2cf180198 (
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() // just ensure it does not panic and executes
}
|