()
| 359 | |
| 360 | #[test] |
| 361 | fn test_string_offset() { |
| 362 | let a = StringArray::from(vec![Some("a"), None, Some("b")]); |
| 363 | let a = a.slice(2, 1); |
| 364 | let b = StringArray::from(vec![Some("b")]); |
| 365 | |
| 366 | test_equal(&a, &b, true); |
| 367 | } |
| 368 | |
| 369 | #[test] |
| 370 | fn test_string_offset_larger() { |
nothing calls this directly
no test coverage detected