()
| 368 | |
| 369 | #[test] |
| 370 | fn test_string_offset_larger() { |
| 371 | let a = StringArray::from(vec![Some("a"), None, Some("b"), None, Some("c")]); |
| 372 | let b = StringArray::from(vec![None, Some("b"), None, Some("c")]); |
| 373 | |
| 374 | test_equal(&a.slice(2, 2), &b.slice(0, 2), false); |
| 375 | test_equal(&a.slice(2, 2), &b.slice(1, 2), true); |
| 376 | test_equal(&a.slice(2, 2), &b.slice(2, 2), false); |
| 377 | } |
| 378 | |
| 379 | #[test] |
| 380 | fn test_null() { |
nothing calls this directly
no test coverage detected