()
| 1204 | |
| 1205 | #[test] |
| 1206 | fn into_output_from_vec() { |
| 1207 | let pred = convert_output(vec![b'H', b'e', b'l', b'l', b'o']); |
| 1208 | assert!(pred.eval(b"Hello" as &[u8])); |
| 1209 | } |
| 1210 | |
| 1211 | #[test] |
| 1212 | fn into_output_from_str() { |
nothing calls this directly
no test coverage detected