(element, index, array)
| 1007 | |
| 1008 | def test_forEach_with_python_function(): |
| 1009 | def func(element, index, array): |
| 1010 | array[int(index)] = "to each his own" |
| 1011 | items = ['Four', 'Three', 'One'] |
| 1012 | returnResult = [0] |
| 1013 | pm.eval("(returnResult, arr, func) => {returnResult[0] = arr.forEach(func)}")(returnResult, items, func) |
nothing calls this directly
no outgoing calls
no test coverage detected