(t *testing.T)
| 190 | } |
| 191 | |
| 192 | func TestEmptyArrayIsDeterministic(t *testing.T) { |
| 193 | if err := Deterministic([]byte{toCborHeader(TypeArray, 0)}); err != nil { |
| 194 | t.Error("Empty array should not return false for deterministicy.") |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | func TestLongArrayIsDeterministic(t *testing.T) { |
| 199 | const numOfItems = 24 |
nothing calls this directly
no test coverage detected