pub use SelectionReportAssertionChain;
use SelectionReport;
/// Extension trait that provides fluent assertion entry on [`SelectionReport`].
///
/// Import this trait and call `.should()` on any `SelectionReport` to start
/// an assertion chain:
///
/// ```ignore
/// use cupel_testing::SelectionReportAssertions;
///
/// report.should()
/// .have_included_count(3);
/// ```