コード例 #1
0
ファイル: log_test.go プロジェクト: Tang-RoseChild/hlog
func TestInfo(t *testing.T) {
	l := New(os.Stdout)
	l.Run()
	l.Info("hello world")

	l.Stop()
}
コード例 #2
0
ファイル: log_test.go プロジェクト: Tang-RoseChild/hlog
func TestSetMax(t *testing.T) {

	l := New(os.Stdout)
	l.Run()
	fmt.Println(l.max)
	l.Stop()

	ll := New(os.Stdout)
	ll.SetMax(1000)
	if ll.max != 1000 {
		t.Error("SetMax can done before run", ll.max)
	}
	ll.Run()
	ll.SetMax(50)
	if ll.max == 50 {
		t.Error("SetMax should done before Run", ll.max)
	}
	ll.Stop()
}