argparse/tests
2019-03-31 21:25:50 -04:00
..
.gitignore Updated .gitignore 2019-03-30 16:59:22 -04:00
catch.hpp Updated CMakeLists.txt - works with VS2017 and g++-8. Added catch testing 2019-03-30 10:17:10 -04:00
CMakeLists.txt Officially added first unit test with catch 2019-03-30 14:56:30 -04:00
main.cpp Removed get_arguments API from ArgumentParser. Improved print_help 2019-03-31 20:28:22 -04:00
README.md Update README.md 2019-03-31 18:15:15 -04:00
test_actions.hpp Removed get_arguments API from ArgumentParser. Improved print_help 2019-03-31 20:28:22 -04:00
test_compound_arguments.hpp Removed get_arguments API from ArgumentParser. Improved print_help 2019-03-31 20:28:22 -04:00
test_container_arguments.hpp First bit of error checking - Cleaned up parse_args methods - Added parse_args_validate() method that checks if all positional arguments have been provided or not and prints help 2019-03-31 21:25:50 -04:00
test_optional_arguments.hpp Removed get_arguments API from ArgumentParser. Improved print_help 2019-03-31 20:28:22 -04:00
test_parse_args.hpp Removed get_arguments API from ArgumentParser. Improved print_help 2019-03-31 20:28:22 -04:00
test_positional_arguments.hpp Removed get_arguments API from ArgumentParser. Improved print_help 2019-03-31 20:28:22 -04:00

Argparse Tests

Linux

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

Windows

$ mkdir build
$ cd build
$ cmake -G "Visual Studio 15 2017" ../.
$ make
$ ./tests