Expects the invocation to have erroneously terminated with the exact `message` during compilation. If not called, defaults to expecting that execution terminated due to EOF. This or `expect_err` can only be called once.
(mut self, message: S)
| 878 | /// If not called, defaults to expecting that execution terminated due to EOF. This or |
| 879 | /// `expect_err` can only be called once. |
| 880 | pub fn expect_compilation_err<S: Into<String>>(mut self, message: S) -> Self { |
| 881 | self.exp_result = Err(message.into()); |
| 882 | self |
| 883 | } |
| 884 | |
| 885 | /// Expects the invocation to have erroneously terminated with the exact `message`. |
| 886 | /// |
no outgoing calls
no test coverage detected