mirror of
https://github.com/robotn/gohook.git
synced 2024-11-22 11:36:47 +08:00
16 lines
162 B
Go
16 lines
162 B
Go
|
package hook
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/vcaesar/tt"
|
||
|
)
|
||
|
|
||
|
func TestAdd(t *testing.T) {
|
||
|
fmt.Println("hook test...")
|
||
|
|
||
|
e := Start()
|
||
|
tt.NotNil(t, e)
|
||
|
}
|