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