(&self, f: &mut Formatter)
| 69 | |
| 70 | impl Display for RunCommand { |
| 71 | fn fmt(&self, f: &mut Formatter) -> fmt::Result { |
| 72 | match self { |
| 73 | RunCommand::Print(invocation) => write!(f, "print: {invocation}"), |
| 74 | RunCommand::Run(invocation, comparison, expected) => { |
| 75 | let expected = DisplayDataValues(expected); |
| 76 | write!(f, "run: {invocation} {comparison} {expected}") |
| 77 | } |
| 78 | } |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | /// Represent a function call; [RunCommand]s invoke a CLIF function using an [Invocation]. |
nothing calls this directly
no test coverage detected