pub trait TestCaseResult { type Err: Display + Debug; // Required method fn result(self) -> Result<String, Self::Err>; }