File: tlogger_test.go

package info (click to toggle)
golang-github-cactus-mlog 1.0.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 272 kB
  • sloc: makefile: 2
file content (12 lines) | stat: -rw-r--r-- 151 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
package mlog

import (
	"testing"
)

func TestTLogger(t *testing.T) {
	tw := &TestingLogWriter{t}
	logger := New(tw, 0)
	logger.Info("test")
	_ = tw
}