(t *testing.T)
| 80 | } |
| 81 | |
| 82 | func TestEmptyByteArrayIsDeterministic(t *testing.T) { |
| 83 | if err := Deterministic([]byte{}); err != nil { |
| 84 | t.Error("Empty byte array should return true.") |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | func TestUnsupportedAdditionalInformationValues(t *testing.T) { |
| 89 | notSupportedStartBytes := []byte{0x1C, 0x1D, 0x1E /*AdditionalInfoReserved*/, 0x1F /*AdditionalInfoInfinite*/} |
nothing calls this directly
no test coverage detected