| 292 | } |
| 293 | |
| 294 | void comparison(Conductor &c) |
| 295 | { |
| 296 | |
| 297 | auto ex1 = c.addNewExecution("Execution A"); |
| 298 | build_for_comparison_a(ex1->tree()); |
| 299 | |
| 300 | auto ex2 = c.addNewExecution("Execution B"); |
| 301 | build_for_comparison_b(ex2->tree()); |
| 302 | |
| 303 | c.mergeTrees(ex1, ex2); |
| 304 | } |
| 305 | |
| 306 | void comparison2(Conductor &c) |
| 307 | { |
nothing calls this directly
no test coverage detected