()
| 396 | |
| 397 | |
| 398 | def test_lastIndexOf(): |
| 399 | items = [1, 2, 3] |
| 400 | result = [None] |
| 401 | pm.eval("(result, arr) => {result[0] = arr.lastIndexOf(1)}")(result, items) |
| 402 | assert result[0] == 0 |
| 403 | |
| 404 | |
| 405 | def test_lastIndexOf_dup(): |
nothing calls this directly
no outgoing calls
no test coverage detected