pub trait VotePlanStatusAssert {
    // Required method
    fn assert_proposal_tally(
        &self,
        vote_plan_id: String,
        index: u8,
        expected: Vec<u64>
    );
}

Required Methods§

source

fn assert_proposal_tally( &self, vote_plan_id: String, index: u8, expected: Vec<u64> )

Implementations on Foreign Types§

source§

impl VotePlanStatusAssert for Vec<VotePlanStatus>

source§

fn assert_proposal_tally( &self, vote_plan_id: String, index: u8, expected: Vec<u64> )

Implementors§