jl-iot/log/log_test.go
walker 151828f569 添加日志纪录及查询请求完善
-日志记录为内存记录,默认上限定为1000条
-查询请求查最新的指定条数
2023-12-22 15:06:08 +08:00

15 lines
214 B
Go

package log
import (
"strconv"
"testing"
)
func TestGetLogHistory(t *testing.T) {
list := newLogHistoryList(10)
for i := 0; i < 10; i++ {
list.Add("test" + strconv.Itoa(i))
}
t.Log(list.GetTailsOf(20))
}