gohook/hook_test.go

16 lines
162 B
Go
Raw Normal View History

2020-02-23 00:09:45 +08:00
package hook
import (
"fmt"
"testing"
"github.com/vcaesar/tt"
)
func TestAdd(t *testing.T) {
fmt.Println("hook test...")
e := Start()
tt.NotNil(t, e)
}