(image, volatility, python)
| 328 | |
| 329 | |
| 330 | def test_mac_netstat(image, volatility, python): |
| 331 | rc, out, _err = runvol_plugin("mac.netstat.Netstat", image, volatility, python) |
| 332 | |
| 333 | assert out.find(b"TCP") != -1 |
| 334 | assert out.find(b"UDP") != -1 |
| 335 | assert out.find(b"UNIX") != -1 |
| 336 | assert out.count(b"\n") > 10 |
| 337 | assert rc == 0 |
| 338 | |
| 339 | |
| 340 | def test_mac_proc_maps(image, volatility, python): |
nothing calls this directly
no test coverage detected