(expected: &str, byte_size: ByteSize, format: Format)
| 332 | |
| 333 | #[track_caller] |
| 334 | fn assert_to_string(expected: &str, byte_size: ByteSize, format: Format) { |
| 335 | assert_eq!(expected, Display { byte_size, format }.to_string()); |
| 336 | } |
| 337 | |
| 338 | #[test] |
| 339 | fn test_to_string_as() { |
no outgoing calls