()
| 90 | |
| 91 | #[test] |
| 92 | fn encode() { |
| 93 | assert_encode( |
| 94 | &Payload(Bytes::from_static(b"hello world")), |
| 95 | expect![[r#" |
| 96 | 0x00 0x0B b'h' b'e' b'l' b'l' b'o' b' ' b'w' b'o' b'r' b'l' b'd' |
| 97 | "#]], |
| 98 | ); |
| 99 | } |
| 100 | |
| 101 | #[test] |
| 102 | fn decode() { |
no test coverage detected