Expand description

Assert a command (built with program and args) stdout string is greater than another.

§Example

let a_program = "bin/printf-stdout";
let a_args = ["%s", "hello"];
let b_program = "bin/printf-stdout";
let b_args = ["%s%s%s%s%s", "h", "a", "l", "l", "o"];
assert_program_args_stdout_gt!(&a_program, &a_args, &b_program, &b_args);

§Module macros