(report: &Report<E>)
| 20 | } |
| 21 | |
| 22 | fn test_kinds<E>(report: &Report<E>) { |
| 23 | assert_kinds!( |
| 24 | report, |
| 25 | [ |
| 26 | FrameKind::Attachment(AttachmentKind::Printable(_)), |
| 27 | FrameKind::Attachment(AttachmentKind::Printable(_)), |
| 28 | FrameKind::Attachment(AttachmentKind::Printable(_)), |
| 29 | FrameKind::Attachment(AttachmentKind::Printable(_)), |
| 30 | FrameKind::Context(_) |
| 31 | ] |
| 32 | ); |
| 33 | } |
| 34 | |
| 35 | #[test] |
| 36 | fn attach_opaque() { |
no outgoing calls
no test coverage detected