You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
585 B
Go
35 lines
585 B
Go
1 year ago
|
package nlog
|
||
|
|
||
|
import (
|
||
|
"strings"
|
||
|
"testing"
|
||
|
|
||
|
"git.noahlan.cn/noahlan/ntool/ntest/assert"
|
||
|
)
|
||
|
|
||
|
func TestLessLogger_Error(t *testing.T) {
|
||
|
w := new(mockWriter)
|
||
|
old := writer.Swap(w)
|
||
|
defer writer.Store(old)
|
||
|
|
||
|
l := NewLessLogger(500)
|
||
|
for i := 0; i < 100; i++ {
|
||
|
l.Error("hello")
|
||
|
}
|
||
|
|
||
|
assert.Equal(t, 1, strings.Count(w.String(), "\n"))
|
||
|
}
|
||
|
|
||
|
func TestLessLogger_Errorf(t *testing.T) {
|
||
|
w := new(mockWriter)
|
||
|
old := writer.Swap(w)
|
||
|
defer writer.Store(old)
|
||
|
|
||
|
l := NewLessLogger(500)
|
||
|
for i := 0; i < 100; i++ {
|
||
|
l.Errorf("hello")
|
||
|
}
|
||
|
|
||
|
assert.Equal(t, 1, strings.Count(w.String(), "\n"))
|
||
|
}
|