()
| 343 | type OptionStr = Option<&'static str>; |
| 344 | |
| 345 | fn length_null_cases_string() -> Vec<(Vec<OptionStr>, usize, Vec<Option<i32>>)> { |
| 346 | vec![( |
| 347 | vec![Some("one"), None, Some("three"), Some("four")], |
| 348 | 4, |
| 349 | vec![Some(3), None, Some(5), Some(4)], |
| 350 | )] |
| 351 | } |
| 352 | |
| 353 | #[test] |
| 354 | fn length_null_string() { |
no outgoing calls