(&self, f: &mut fmt::Formatter<'_>)
| 80 | |
| 81 | impl fmt::Debug for TestCase { |
| 82 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 83 | writeln!(f, "Options: {:?}", self.options)?; |
| 84 | match &self.reginfo { |
| 85 | TestCaseRegInfo::Example { path, reginfo: _ } => { |
| 86 | writeln!(f, "Using example reginfo: {path}")?; |
| 87 | } |
| 88 | TestCaseRegInfo::Arbitrary { reginfo } => { |
| 89 | writeln!(f, "{reginfo}")?; |
| 90 | } |
| 91 | } |
| 92 | writeln!(f, "{}", self.func) |
| 93 | } |
| 94 | } |
nothing calls this directly
no outgoing calls
no test coverage detected