()
| 401 | |
| 402 | #[test] |
| 403 | fn test_list_equal() { |
| 404 | let a = create_list_array([Some(&[1, 2, 3]), Some(&[4, 5, 6])]); |
| 405 | let b = create_list_array([Some(&[1, 2, 3]), Some(&[4, 5, 6])]); |
| 406 | test_equal(&a, &b, true); |
| 407 | |
| 408 | let b = create_list_array([Some(&[1, 2, 3]), Some(&[4, 5, 7])]); |
| 409 | test_equal(&a, &b, false); |
| 410 | } |
| 411 | |
| 412 | #[test] |
| 413 | fn test_empty_offsets_list_equal() { |
nothing calls this directly
no test coverage detected