()
| 323 | |
| 324 | #[test] |
| 325 | fn multiline() { |
| 326 | let _guard = prepare(false); |
| 327 | |
| 328 | let report = create_report() |
| 329 | .attach("A multiline\nattachment\nthat might have some\nadditional info") |
| 330 | .attach("A multiline\nattachment\nthat might have some\nadditional info"); |
| 331 | |
| 332 | assert_snapshot!(format!("{report:#?}")); |
| 333 | } |
| 334 | |
| 335 | /// Generate the `Debug` for: |
| 336 | /// |
nothing calls this directly
no test coverage detected