()
| 403 | |
| 404 | |
| 405 | def test_lastIndexOf_dup(): |
| 406 | items = [1, 2, 3, 1] |
| 407 | result = [None] |
| 408 | pm.eval("(result, arr) => {result[0] = arr.lastIndexOf(1)}")(result, items) |
| 409 | assert result[0] == 3 |
| 410 | |
| 411 | |
| 412 | def test_lastIndexOf_with_from_index(): |
nothing calls this directly
no outgoing calls
no test coverage detected