Assert a command stdout string contains a given containee.
use std::process::Command; let mut command = Command::new("bin/printf-stdout"); command.args(["%s", "hello"]); let containee = "ell"; assert_command_stdout_contains!(command, &containee);
assert_command_stdout_contains
assert_command_stdout_contains_as_result
debug_assert_command_stdout_contains