()
| 224 | |
| 225 | #[test] |
| 226 | fn surrogates_empty_roundtrip() { |
| 227 | let data = encode_surrogates(&[]); |
| 228 | let out = decode_surrogates(&data).unwrap(); |
| 229 | assert!(out.is_empty()); |
| 230 | } |
| 231 | |
| 232 | #[test] |
| 233 | fn surrogates_roundtrip() { |
nothing calls this directly
no test coverage detected