github.com/zhangyunhao116/wyhash@v0.4.1-0.20220217162229-7d42996fa899/wyhash_test.go (about) 1 package wyhash 2 3 import ( 4 "testing" 5 6 "github.com/zhangyunhao116/wyhash/internal/wyhashfv1" 7 ) 8 9 func TestWyhash(t *testing.T) { 10 testSum(t, Sum64, wyhashfv1.Sum64) 11 testSumWithSeed(t, Sum64WithSeed, wyhashfv1.Sum64WithSeed) 12 }