pub trait SelectionReportAssertions {
// Required method
fn should(&self) -> SelectionReportAssertionChain<'_>;
}Expand description
Extension trait that provides fluent assertion entry on SelectionReport.
Import this trait and call .should() on any SelectionReport to start
an assertion chain:
ⓘ
use cupel_testing::SelectionReportAssertions;
report.should()
.have_included_count(3);Required Methods§
Sourcefn should(&self) -> SelectionReportAssertionChain<'_>
fn should(&self) -> SelectionReportAssertionChain<'_>
Begin a fluent assertion chain on this report.