()
| 525 | |
| 526 | #[test] |
| 527 | fn encode_f32() { |
| 528 | let test_number: f32 = 3.141; |
| 529 | |
| 530 | let mut encoded = String::new(); |
| 531 | test_number.encode_canvas(&mut encoded); |
| 532 | |
| 533 | assert!(encoded == "lYQSAB".to_string()); |
| 534 | } |
| 535 | |
| 536 | fn encode_draw(item: Draw) -> String { |
| 537 | let mut result = String::new(); |
nothing calls this directly
no test coverage detected