argparse/test
2023-10-27 16:37:20 -05:00
..
.gitignore Renamed directories 2019-04-01 22:01:40 -04:00
argparse_details.cppm update test to use module when WITH_MODULE macro is set 2023-10-15 18:51:56 +02:00
CMakeLists.txt #277 Added in-built support for string_type choices 2023-10-27 09:16:25 -05:00
doctest.hpp Upgraded doctest to v2.4.11 2023-10-27 11:41:35 -05:00
main.cpp Annotate test cases with doctest::test_suite 2019-11-21 14:24:50 -06:00
README.md Update README.md 2019-04-01 22:03:59 -04:00
test_actions.cpp update test to use module when WITH_MODULE macro is set 2023-10-15 18:51:56 +02:00
test_append.cpp #277 Added in-built support for string_type choices 2023-10-27 09:16:25 -05:00
test_as_container.cpp #277 Added in-built support for string_type choices 2023-10-27 09:16:25 -05:00
test_bool_operator.cpp #277 Added in-built support for string_type choices 2023-10-27 09:16:25 -05:00
test_choices.cpp Closes #278 2023-10-27 12:59:04 -05:00
test_compound_arguments.cpp Added flag() shorthand function 2023-10-27 16:37:20 -05:00
test_const_correct.cpp update test to use module when WITH_MODULE macro is set 2023-10-15 18:51:56 +02:00
test_container_arguments.cpp update test to use module when WITH_MODULE macro is set 2023-10-15 18:51:56 +02:00
test_default_args.cpp #277 Added in-built support for string_type choices 2023-10-27 09:16:25 -05:00
test_default_value.cpp Added flag() shorthand function 2023-10-27 16:37:20 -05:00
test_equals_form.cpp #277 Added in-built support for string_type choices 2023-10-27 09:16:25 -05:00
test_get.cpp #277 Added in-built support for string_type choices 2023-10-27 09:16:25 -05:00
test_help.cpp Added flag() shorthand function 2023-10-27 16:37:20 -05:00
test_invalid_arguments.cpp update test to use module when WITH_MODULE macro is set 2023-10-15 18:51:56 +02:00
test_is_used.cpp update test to use module when WITH_MODULE macro is set 2023-10-15 18:51:56 +02:00
test_issue_37.cpp update test to use module when WITH_MODULE macro is set 2023-10-15 18:51:56 +02:00
test_negative_numbers.cpp update test to use module when WITH_MODULE macro is set 2023-10-15 18:51:56 +02:00
test_optional_arguments.cpp Added flag() shorthand function 2023-10-27 16:37:20 -05:00
test_parent_parsers.cpp update test to use module when WITH_MODULE macro is set 2023-10-15 18:51:56 +02:00
test_parse_args.cpp update test to use module when WITH_MODULE macro is set 2023-10-15 18:51:56 +02:00
test_parse_known_args.cpp #277 Added in-built support for string_type choices 2023-10-27 09:16:25 -05:00
test_positional_arguments.cpp update test to use module when WITH_MODULE macro is set 2023-10-15 18:51:56 +02:00
test_prefix_chars.cpp Added flag() shorthand function 2023-10-27 16:37:20 -05:00
test_repr.cpp #277 Added in-built support for string_type choices 2023-10-27 09:16:25 -05:00
test_required_arguments.cpp update test to use module when WITH_MODULE macro is set 2023-10-15 18:51:56 +02:00
test_scan.cpp Closes #278 2023-10-27 12:59:04 -05:00
test_subparsers.cpp Added flag() shorthand function 2023-10-27 16:37:20 -05:00
test_utility.hpp update test to use module when WITH_MODULE macro is set 2023-10-15 18:51:56 +02:00
test_value_semantics.cpp update test to use module when WITH_MODULE macro is set 2023-10-15 18:51:56 +02:00
test_version.cpp update test to use module when WITH_MODULE macro is set 2023-10-15 18:51:56 +02:00

Argparse Tests

Linux

$ mkdir build
$ cd build
$ cmake ../.
$ make
$ ./tests

Windows

  1. Generate Visual Studio solution
$ mkdir build
$ cd build
$ cmake ../. -G "Visual Studio 15 2017"
  1. Open ARGPARSE.sln
  2. Build tests in RELEASE | x64
  3. Run tests.exe