()
| 42 | |
| 43 | #[test] |
| 44 | fn multiple_sources() { |
| 45 | let _guard = prepare(); |
| 46 | |
| 47 | let mut report_a = create_report().attach(PrintableC(1)).expand(); |
| 48 | let report_b = create_report().attach(PrintableC(2)); |
| 49 | |
| 50 | report_a.push(report_b); |
| 51 | |
| 52 | let report_a = report_a |
| 53 | .attach(PrintableC(3)) |
| 54 | .change_context(ContextA(2)) |
| 55 | .attach(PrintableC(4)); |
| 56 | |
| 57 | assert_ron_snapshot!(report_a); |
| 58 | } |
| 59 | |
| 60 | #[test] |
| 61 | fn multiple_sources_at_root() { |
nothing calls this directly
no test coverage detected