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.
32 lines
563 B
Go
32 lines
563 B
Go
package logx
|
|
|
|
import (
|
|
"log"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestLessLogger_Error(t *testing.T) {
|
|
var builder strings.Builder
|
|
log.SetOutput(&builder)
|
|
l := NewLessLogger(500)
|
|
for i := 0; i < 100; i++ {
|
|
l.Error("hello")
|
|
}
|
|
|
|
assert.Equal(t, 1, strings.Count(builder.String(), "\n"))
|
|
}
|
|
|
|
func TestLessLogger_Errorf(t *testing.T) {
|
|
var builder strings.Builder
|
|
log.SetOutput(&builder)
|
|
l := NewLessLogger(500)
|
|
for i := 0; i < 100; i++ {
|
|
l.Errorf("hello")
|
|
}
|
|
|
|
assert.Equal(t, 1, strings.Count(builder.String(), "\n"))
|
|
}
|