Skip to main content

SelectionReportAssertions

Trait SelectionReportAssertions 

Source
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§

Source

fn should(&self) -> SelectionReportAssertionChain<'_>

Begin a fluent assertion chain on this report.

Implementations on Foreign Types§

Source§

impl SelectionReportAssertions for SelectionReport

Implementors§