(t *testing.T)
| 27 | } |
| 28 | |
| 29 | func TestToStringNull(t *testing.T) { |
| 30 | if hash, err := ToString(0); err != nil || hash != "null" { |
| 31 | t.Fatalf("Must return 0 from null ID, but was: %v %v", err, hash) |
| 32 | } |
| 33 | } |
nothing calls this directly
no test coverage detected