1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
use ControlFlow;
use crateTestOutcome;
pub use *;
/// The outcomes of a single test group.
///
/// This is a list of test names and their corresponding [`TestOutcome`]
/// values, produced after running one group.
pub type TestGroupOutcomes<'t> = ;
/// A strategy for running a single test group.
///
/// A group runner controls how groups are executed in a grouped test harness.
/// Its main responsibility is to perform work before and after a group runs,
/// for example setting up or cleaning up shared state for that group.
///
/// The harness calls [`run_group`](TestGroupRunner::run_group) once per group.