argparse/tests
Pranav Srinivas Kumar cc009e347b Added license header
2019-04-01 20:58:59 -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 Added support for parent parsers. Some basic unit tests 2019-04-01 20:41:14 -04:00
README.md Update README.md 2019-03-31 21:27:52 -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 Checking if i < argc on edge case. New tests added 2019-04-01 20:06:54 -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_parent_parsers.hpp Added support for parent parsers. Some basic unit tests 2019-04-01 20:41:14 -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 Added license header 2019-04-01 20:58:59 -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