argparse/test
Sean Robinson 5f22faa973 Add ArgumentParser::at to retrieve arguments and subparsers
This allows updating attached object properties without holding external
references to the various Argument and ArgumentParser objects.

Closes #227

Signed-off-by: Sean Robinson <sean.robinson@scottsdalecc.edu>
2022-11-29 13:43:16 -07:00
..
.gitignore
CMakeLists.txt Add ArgumentParser::at to retrieve arguments and subparsers 2022-11-29 13:43:16 -07:00
doctest.hpp
main.cpp
README.md
test_actions.cpp
test_append.cpp
test_as_container.cpp Add ArgumentParser::at to retrieve arguments and subparsers 2022-11-29 13:43:16 -07:00
test_bool_operator.cpp Add operator bool for ArgumentParser 2022-10-10 15:26:42 -07:00
test_compound_arguments.cpp
test_const_correct.cpp
test_container_arguments.cpp
test_default_args.cpp
test_equals_form.cpp
test_get.cpp
test_help.cpp
test_invalid_arguments.cpp
test_is_used.cpp
test_issue_37.cpp
test_negative_numbers.cpp
test_optional_arguments.cpp
test_parent_parsers.cpp
test_parse_args.cpp
test_parse_known_args.cpp
test_positional_arguments.cpp
test_prefix_chars.cpp
test_repr.cpp
test_required_arguments.cpp
test_scan.cpp
test_subparsers.cpp Add is_subcommand_used overload 2022-11-08 01:31:45 +02:00
test_utility.hpp
test_value_semantics.cpp
test_version.cpp

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