Expand description
Assert a command (built with program and args) stderr string is not equal to an expression.
Pseudocode:
(program1 + args1 ⇒ command ⇒ stderr ⇒ string) ≠ (expr into string)
§Example
use assertables::*;
let program = "bin/printf-stderr";
let args = ["%s", "hello"];
let s = String::from("zzz");
assert_program_args_stderr_ne_expr!(&program, &args, s);