()
| 28 | |
| 29 | #[test] |
| 30 | fn attach_opaque() { |
| 31 | let report = create_report() |
| 32 | .attach_opaque(PrintableA) |
| 33 | .attach_opaque(PrintableB(0)) |
| 34 | .attach_opaque(AttachmentA) |
| 35 | .attach_opaque(AttachmentB); |
| 36 | |
| 37 | test_messages(&report); |
| 38 | test_kinds(&report); |
| 39 | } |
| 40 | |
| 41 | #[test] |
| 42 | fn attach_group() { |
nothing calls this directly
no test coverage detected