aboutsummaryrefslogtreecommitdiff
path: root/test.cxx
diff options
context:
space:
mode:
authorTaylor C. Richberger <taywee@gmx.com>2017-11-19 09:47:38 -0700
committerGitHub <noreply@github.com>2017-11-19 09:47:38 -0700
commitd68d5c5e5c7e038dbd7a9d7b81a88f449e214142 (patch)
tree6707c29a7ad974ce50f9e48644a67bacda83c14a /test.cxx
parentMerge pull request #43 from pavel-belikov/better-help (diff)
parentadd test for throwing exception from ActionFlag (diff)
downloadargs.hxx-d68d5c5e5c7e038dbd7a9d7b81a88f449e214142.tar.xz
Merge pull request #47 from pavel-belikov/action-flag
ActionFlag
Diffstat (limited to 'test.cxx')
-rw-r--r--test.cxx22
1 files changed, 22 insertions, 0 deletions
diff --git a/test.cxx b/test.cxx
index 1189f97..44cde49 100644
--- a/test.cxx
+++ b/test.cxx
@@ -1066,6 +1066,28 @@ TEST_CASE("HelpParams work as expected", "[args]")
}
+TEST_CASE("ActionFlag works as expected", "[args]")
+{
+ args::ArgumentParser p("parser");
+ std::string s;
+
+ args::ActionFlag action0(p, "name", "description", {'x'}, [&]() { s = "flag"; });
+ args::ActionFlag action1(p, "name", "description", {'y'}, [&](const std::string &arg) { s = arg; });
+ args::ActionFlag actionN(p, "name", "description", {'z'}, 2, [&](const std::vector<std::string> &arg) { s = arg[0] + arg[1]; });
+ args::ActionFlag actionThrow(p, "name", "description", {'v'}, [&]() { throw std::runtime_error(""); });
+
+ p.ParseArgs(std::vector<std::string>{"-x"});
+ REQUIRE(s == "flag");
+
+ p.ParseArgs(std::vector<std::string>{"-y", "a"});
+ REQUIRE(s == "a");
+
+ p.ParseArgs(std::vector<std::string>{"-z", "a", "b"});
+ REQUIRE(s == "ab");
+
+ REQUIRE_THROWS_AS(p.ParseArgs(std::vector<std::string>{"-v"}), std::runtime_error);
+}
+
#undef ARGS_HXX
#define ARGS_TESTNAMESPACE
#define ARGS_NOEXCEPT