pub trait GenericTestResult {
// Required method
fn get_test_result(self: Box<Self>) -> TestStatus;
}Expand description
Represents a generic test result. The test result can be extracted into a TestStatus to
determine if the result came from a parameterized or single test.