()
| 309 | |
| 310 | #[test] |
| 311 | fn multiline_context() { |
| 312 | let _guard = prepare(false); |
| 313 | |
| 314 | let report = Report::new(ContextC) |
| 315 | .change_context(ContextC) |
| 316 | .attach(PrintableB(0)) |
| 317 | .attach_opaque(AttachmentB) |
| 318 | .change_context(ContextB(0)) |
| 319 | .attach("printable C"); |
| 320 | |
| 321 | assert_snapshot!(format!("{report:#?}")); |
| 322 | } |
| 323 | |
| 324 | #[test] |
| 325 | fn multiline() { |
nothing calls this directly
no test coverage detected