(expected, **kwargs)
| 1281 | |
| 1282 | def test_disassemble_recursive(self): |
| 1283 | def check(expected, **kwargs): |
| 1284 | dis = self.get_disassembly(_h, **kwargs) |
| 1285 | dis = self.strip_addresses(dis) |
| 1286 | self.assertEqual(dis, expected) |
| 1287 | |
| 1288 | check(dis_nested_0, depth=0) |
| 1289 | check(dis_nested_1, depth=1) |
nothing calls this directly
no test coverage detected