(image, volatility, python)
| 303 | |
| 304 | |
| 305 | def test_mac_lsof(image, volatility, python): |
| 306 | rc, out, _err = runvol_plugin("mac.lsof.Lsof", image, volatility, python) |
| 307 | out = out.lower() |
| 308 | |
| 309 | assert out.count(b"\n") > 50 |
| 310 | assert rc == 0 |
| 311 | |
| 312 | |
| 313 | def test_mac_malfind(image, volatility, python): |
nothing calls this directly
no test coverage detected