()
| 34 | |
| 35 | #[test] |
| 36 | fn attach_opaque() { |
| 37 | let report = create_report() |
| 38 | .attach(PrintableA(0)) |
| 39 | .attach(PrintableB(0)) |
| 40 | .attach(ContextA(0)) |
| 41 | .attach(ContextB(0)); |
| 42 | |
| 43 | test_messages(&report); |
| 44 | test_kinds(&report); |
| 45 | } |
| 46 | |
| 47 | #[test] |
| 48 | fn attach_result() { |
nothing calls this directly
no test coverage detected