()
| 431 | |
| 432 | |
| 433 | def test_lastIndexOf_not_found(): |
| 434 | items = [1, 2, 3] |
| 435 | result = [None] |
| 436 | pm.eval("(result, arr) => {result[0] = arr.lastIndexOf(3, 0)}")(result, items) |
| 437 | assert result[0] == -1 |
| 438 | |
| 439 | |
| 440 | def test_lastIndexOf_small_start(): |
nothing calls this directly
no outgoing calls
no test coverage detected