(t *testing.T)
| 908 | } |
| 909 | |
| 910 | func TestDecodeBadMessage1(t *testing.T) { |
| 911 | testDecode(t, badMessage1, DecoderOptions{}, true, false) |
| 912 | testDecode(t, badMessage1, |
| 913 | DecoderOptions{EnableWorkarounds: true}, false, false) |
| 914 | } |
| 915 | |
| 916 | func TestDecodeHPOfficeJetPro8730(t *testing.T) { |
| 917 | testDecode(t, attrsHPOfficeJetPro8730, DecoderOptions{}, false, true) |
nothing calls this directly
no test coverage detected