(report: &Report<E>)
| 14 | } |
| 15 | |
| 16 | fn test_kinds<E>(report: &Report<E>) { |
| 17 | assert_kinds!( |
| 18 | report, |
| 19 | [ |
| 20 | FrameKind::Attachment(AttachmentKind::Opaque(_)), |
| 21 | FrameKind::Attachment(AttachmentKind::Opaque(_)), |
| 22 | FrameKind::Attachment(AttachmentKind::Opaque(_)), |
| 23 | FrameKind::Attachment(AttachmentKind::Opaque(_)), |
| 24 | FrameKind::Context(_) |
| 25 | ] |
| 26 | ); |
| 27 | } |
| 28 | |
| 29 | #[test] |
| 30 | fn attach_opaque() { |
no outgoing calls
no test coverage detected