(self, c, sub_c)
| 324 | |
| 325 | @rule(c=Parsed, sub_c=Parsed) |
| 326 | def add_component(self, c, sub_c): |
| 327 | assume(sub_c is not c and sub_c not in c) |
| 328 | c.subcomponents.append(sub_c) |
| 329 | assert '\r\n'.join(sub_c.dump_lines()) in '\r\n'.join(c.dump_lines()) |
| 330 | |
| 331 | @rule(c=Parsed) |
| 332 | def sanity_check(self, c): |
nothing calls this directly
no test coverage detected