()
| 380 | |
| 381 | |
| 382 | def test_indexOf_not_found(): |
| 383 | items = [1, 2, 3] |
| 384 | result = [None] |
| 385 | pm.eval("(result, arr) => {result[0] = arr.indexOf(10)}")(result, items) |
| 386 | assert result[0] == -1 |
| 387 | |
| 388 | |
| 389 | def test_indexOf_small_start(): |
nothing calls this directly
no outgoing calls
no test coverage detected