• Home
  • Raw
  • Download

Lines Matching full:ctest

59     let cmd = Command::new("ctest").subcommand(  in help_multi_subcommand_error()
79 .try_get_matches_from(["ctest", "help", "subcmd", "multi", "foo"]) in help_multi_subcommand_error()
84 Usage: ctest subcmd multi [OPTIONS] in help_multi_subcommand_error()
304 Usage: ctest subcmd multi [OPTIONS]
315 let cmd = Command::new("ctest").subcommand( in multi_level_sc_help()
334 utils::assert_output(cmd, "ctest help subcmd multi", MULTI_SC_HELP, false); in multi_level_sc_help()
340 Usage: ctest in no_wrap_default_help()
347 let cmd = Command::new("ctest").version("1.0").term_width(0); in no_wrap_default_help()
348 utils::assert_output(cmd, "ctest --help", DEFAULT_HELP, false); in no_wrap_default_help()
534 Usage: ctest [OPTIONS] in issue_626_unicode_cutoff()
549 let cmd = Command::new("ctest").version("0.1").term_width(70).arg( in issue_626_unicode_cutoff()
564 utils::assert_output(cmd, "ctest --help", ISSUE_626_CUTOFF, false); in issue_626_unicode_cutoff()
568 Usage: ctest [OPTIONS]
579 let cmd = Command::new("ctest") in hide_possible_vals()
600 utils::assert_output(cmd, "ctest --help", HIDE_POS_VALS, false); in hide_possible_vals()
605 let cmd = Command::new("ctest") in hide_single_possible_val()
628 utils::assert_output(cmd, "ctest --help", HIDE_POS_VALS, false); in hide_single_possible_val()
634 Usage: ctest [OPTIONS] in possible_vals_with_help()
653 let app = Command::new("ctest") in possible_vals_with_help()
676 utils::assert_output(app, "ctest --help", POS_VALS_HELP, false); in possible_vals_with_help()
683 Usage: ctest [OPTIONS] in issue_626_panic()
700 let cmd = Command::new("ctest") in issue_626_panic()
711 utils::assert_output(cmd, "ctest --help", ISSUE_626_PANIC, false); in issue_626_panic()
718 let _ = Command::new("ctest") in issue_626_variable_panic()
729 .try_get_matches_from(vec!["ctest", "--help"]); in issue_626_variable_panic()
737 Usage: ctest in final_word_wrapping()
746 let cmd = Command::new("ctest").version("0.1").term_width(24); in final_word_wrapping()
747 utils::assert_output(cmd, "ctest --help", FINAL_WORD_WRAPPING, false); in final_word_wrapping()
754 Usage: ctest [mode] in wrapping_newline_chars()
768 let cmd = Command::new("ctest") in wrapping_newline_chars()
776 utils::assert_output(cmd, "ctest --help", WRAPPING_NEWLINE_CHARS, false); in wrapping_newline_chars()
783 Usage: ctest [mode] in wrapping_newline_variables()
797 let cmd = Command::new("ctest") in wrapping_newline_variables()
805 utils::assert_output(cmd, "ctest --help", WRAPPING_NEWLINE_CHARS, false); in wrapping_newline_variables()
836 Usage: ctest [OPTIONS]
847 let cmd = Command::new("ctest").version("0.1").arg( in old_newline_chars()
853 utils::assert_output(cmd, "ctest --help", OLD_NEWLINE_CHARS, false); in old_newline_chars()
858 let cmd = Command::new("ctest").version("0.1").arg( in old_newline_variables()
864 utils::assert_output(cmd, "ctest --help", OLD_NEWLINE_CHARS, false); in old_newline_variables()
871 Usage: ctest [OPTIONS] in issue_688_hide_pos_vals()
883 let app1 = Command::new("ctest") in issue_688_hide_pos_vals()
893 utils::assert_output(app1, "ctest --help", ISSUE_688, false); in issue_688_hide_pos_vals()
895 let app2 = Command::new("ctest") in issue_688_hide_pos_vals()
904 utils::assert_output(app2, "ctest --help", ISSUE_688, false); in issue_688_hide_pos_vals()
906 let app3 = Command::new("ctest") in issue_688_hide_pos_vals()
914 utils::assert_output(app3, "ctest --help", ISSUE_688, false); in issue_688_hide_pos_vals()
1197 Usage: ctest in issue_777_wrap_all_things()
1210 utils::assert_output(cmd, "ctest --help", ISSUE_777, false); in issue_777_wrap_all_things()
1757 Usage: ctest foo
1769 let cmd = Command::new("ctest").version("0.1").subcommand( in show_long_about_issue_897()
1775 utils::assert_output(cmd, "ctest foo --help", ISSUE_897, false); in show_long_about_issue_897()
1781 Usage: ctest foo
1790 let cmd = Command::new("ctest").version("0.1").subcommand( in show_short_about_issue_897()
1796 utils::assert_output(cmd, "ctest foo -h", ISSUE_897_SHORT, false); in show_short_about_issue_897()
1834 Usage: ctest <arg1|arg2> in issue_1487()
1852 utils::assert_output(cmd, "ctest -h", ISSUE_1487, false); in issue_1487()
2724 Usage: ctest subcmd in parent_cmd_req_ignored_when_negates_reqs()
2730 let cmd = Command::new("ctest") in parent_cmd_req_ignored_when_negates_reqs()
2734 utils::assert_output(cmd, "ctest subcmd --help", MULTI_SC_HELP, false); in parent_cmd_req_ignored_when_negates_reqs()
2740 Usage: ctest subcmd in parent_cmd_req_ignored_when_conflicts()
2746 let cmd = Command::new("ctest") in parent_cmd_req_ignored_when_conflicts()
2750 utils::assert_output(cmd, "ctest subcmd --help", MULTI_SC_HELP, false); in parent_cmd_req_ignored_when_conflicts()
2755 let cmd = Command::new("ctest") in no_wrap_help()
2758 utils::assert_output(cmd, "ctest --help", MULTI_SC_HELP, false); in no_wrap_help()