argparse/test
2019-11-16 15:15:54 -06:00
..
.gitignore Renamed directories 2019-04-01 22:01:40 -04:00
catch.hpp Renamed directories 2019-04-01 22:01:40 -04:00
CMakeLists.txt Fixes Issue #24 2019-06-06 21:24:32 -04:00
main.cpp Give ArgumentParser value semantics 2019-11-16 15:15:54 -06:00
README.md Update README.md 2019-04-01 22:03:59 -04:00
test_actions.hpp Bind extra arguments to actions 2019-11-14 01:30:04 -06:00
test_compound_arguments.hpp Fixes Issue #24 2019-06-06 21:24:32 -04:00
test_container_arguments.hpp Unify container operations 2019-05-12 17:17:21 +02:00
test_help.hpp Print ArgumentParser help with stream insertion 2019-11-13 02:17:28 -06:00
test_invalid_arguments.hpp Throw exception in case of unknown argument 2019-05-20 22:21:57 +02:00
test_issue_37.hpp Added test case for issue #37 2019-11-13 08:25:07 -06:00
test_negative_numbers.hpp Unit tests to parse floating point numbers in E-notation. Issue #24 2019-06-06 21:37:36 -04:00
test_optional_arguments.hpp Renamed directories 2019-04-01 22:01:40 -04:00
test_parent_parsers.hpp Stop sharing argument values with parent parsers 2019-11-16 14:33:00 -06:00
test_parse_args.hpp Renamed directories 2019-04-01 22:01:40 -04:00
test_positional_arguments.hpp Change test cases 2019-05-20 22:21:57 +02:00
test_required_arguments.hpp Fix typo 2019-08-07 19:58:32 +08:00
test_utility.hpp Unify container operations 2019-05-12 17:17:21 +02:00
test_value_semantics.hpp Give ArgumentParser value semantics 2019-11-16 15:15:54 -06: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