()
| 147 | |
| 148 | #[test] |
| 149 | fn f64_empty() { |
| 150 | let encoded = encode_f64(&[]).unwrap(); |
| 151 | let decoded = decode_f64(&encoded).unwrap(); |
| 152 | assert!(decoded.is_empty()); |
| 153 | } |
| 154 | |
| 155 | #[test] |
| 156 | fn f64_roundtrip() { |
nothing calls this directly
no test coverage detected