()
| 257 | |
| 258 | #[test] |
| 259 | fn test_empty() { |
| 260 | let array = PackedStringArray::<u8>::new_empty(20); |
| 261 | assert_eq!(array.get(12).unwrap(), ""); |
| 262 | assert_eq!(array.get(9).unwrap(), ""); |
| 263 | assert_eq!(array.get(3).unwrap(), ""); |
| 264 | } |
| 265 | |
| 266 | #[test] |
| 267 | fn test_truncate() { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…