(t *testing.T)
| 213 | } |
| 214 | |
| 215 | func TestTHashH(t *testing.T) { |
| 216 | Convey("HashH HashB", t, func() { |
| 217 | b := []byte{0x43, 0x9c, 0x2f, 0x4b} |
| 218 | h := THashH(b) |
| 219 | So(h.CloneBytes(), ShouldResemble, THashB(b)) |
| 220 | }) |
| 221 | } |
| 222 | |
| 223 | func BenchmarkTHashB(b *testing.B) { |
| 224 | b.ResetTimer() |
nothing calls this directly
no test coverage detected