pub type GroupedTestOutcomes<'t, GroupKey, GroupCtx> = Vec<(GroupKey, Vec<(&'t str, TestOutcome)>, Option<GroupCtx>)>;Expand description
Collected outcomes of a grouped test run.
GroupedTestOutcomes is a list of (group_key, test_outcomes) pairs produced by a
GroupedTestHarness run.
Each entry represents one group, identified by its GroupKey, and contains the
outcomes of all tests executed in that group.
This mirrors TestOutcomes, but adds one level of structure for grouping.
Aliased Typeยง
pub struct GroupedTestOutcomes<'t, GroupKey, GroupCtx> { /* private fields */ }