Expand description
Assert a command (built with program and args) stderr string is less than another.
§Example
let a_program = "bin/printf-stderr";
let a_args = ["%s", "hello"];
let b_program = "bin/printf-stderr";
let b_args = ["%s", "hullo"];
assert_program_args_stderr_lt!(&a_program, &a_args, &b_program, &b_args);/// # Module macros