Files
indra/pkg/proc/log/log_test.go
2023-06-07 19:37:23 +01:00

18 lines
241 B
Go

package log_test
import (
"errors"
log2 "github.com/indra-labs/indra/pkg/proc/log"
"testing"
)
var (
log = log2.GetLogger()
fails = log.E.Chk
)
func TestGetLogger(t *testing.T) {
log.I.Ln("info")
fails(errors.New("dummy error"))
}