argparse/test
2020-12-15 19:05:18 +03:00
..
.gitignore
CMakeLists.txt add tests for repr() and extend tests for help msg 2020-12-15 19:05:18 +03:00
doctest.hpp
main.cpp
README.md
test_actions.cpp Closes #73 2020-05-08 14:35:05 -05:00
test_compound_arguments.cpp Closes #73 2020-05-08 14:35:05 -05:00
test_container_arguments.cpp Closes #73 2020-05-08 14:35:05 -05:00
test_help.cpp add tests for repr() and extend tests for help msg 2020-12-15 19:05:18 +03:00
test_invalid_arguments.cpp Closes #73 2020-05-08 14:35:05 -05:00
test_issue_37.cpp Closes #73 2020-05-08 14:35:05 -05:00
test_negative_numbers.cpp Closes #73 2020-05-08 14:35:05 -05:00
test_optional_arguments.cpp Closes #73 2020-05-08 14:35:05 -05:00
test_parent_parsers.cpp Closes #73 2020-05-08 14:35:05 -05:00
test_parse_args.cpp Closes #73 2020-05-08 14:35:05 -05:00
test_positional_arguments.cpp Closes #73 2020-05-08 14:35:05 -05:00
test_repr.cpp add tests for repr() and extend tests for help msg 2020-12-15 19:05:18 +03:00
test_required_arguments.cpp Closes #73 2020-05-08 14:35:05 -05:00
test_scan.cpp Closes #73 2020-05-08 14:35:05 -05:00
test_utility.hpp
test_value_semantics.cpp Closes #73 2020-05-08 14:35:05 -05:00
test_version.cpp Added --version as a special flag similar to --help 2020-05-15 19:06:00 -05: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