argparse/test
2021-08-03 22:12:05 +02:00
..
.gitignore
CMakeLists.txt Introduce separate const-correctness test 2021-08-03 22:12:05 +02:00
doctest.hpp
main.cpp
README.md
test_actions.cpp
test_append.cpp Add Argument.append method to allow repeated argument use 2021-04-07 11:47:09 -07:00
test_compound_arguments.cpp
test_const_correct.cpp Introduce separate const-correctness test 2021-08-03 22:12:05 +02:00
test_container_arguments.cpp
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
test_is_used.cpp Add ArgumentParser.is_used to discern user-supplied values from defaults 2021-04-07 14:09:10 -07:00
test_issue_37.cpp
test_negative_numbers.cpp
test_optional_arguments.cpp
test_parent_parsers.cpp
test_parse_args.cpp
test_positional_arguments.cpp
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
test_scan.cpp
test_utility.hpp
test_value_semantics.cpp Introduce separate const-correctness test 2021-08-03 22:12:05 +02:00
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