Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
assert_not_contains in datafusion::common - Rust
[go: Go Back, main page]

Macro datafusion::common::assert_not_contains

source ยท
macro_rules! assert_not_contains {
    ($ACTUAL: expr, $UNEXPECTED: expr) => { ... };
}
Expand description

A macro to assert that one string is NOT contained within another with a nice error message if they are are.

Usage: assert_not_contains!(actual, unexpected)

Is a macro so test error messages are on the same line as the failure;

Both arguments must be convertable into Strings (Into<String>)