aboutsummaryrefslogtreecommitdiff
path: root/test.cxx
diff options
context:
space:
mode:
authorPavel Belikov <pavel.fuchs.belikov@gmail.com>2017-11-12 16:45:02 +0300
committerPavel Belikov <pavel.fuchs.belikov@gmail.com>2017-11-12 16:59:19 +0300
commita86c29be5bb206420aa7520633782c7fc6c1b4db (patch)
treeebafc5ef3313e0b1e25ddb451adf6126fe973eef /test.cxx
parentadd HelpParams::proglineShowFlags (diff)
downloadargs.hxx-a86c29be5bb206420aa7520633782c7fc6c1b4db.tar.xz
add Matcher validation tests
Diffstat (limited to 'test.cxx')
-rw-r--r--test.cxx17
1 files changed, 17 insertions, 0 deletions
diff --git a/test.cxx b/test.cxx
index 3376059..71f1fb7 100644
--- a/test.cxx
+++ b/test.cxx
@@ -958,6 +958,12 @@ TEST_CASE("GetProgramLine works as expected", "[args]")
REQUIRE(line(b) == "b -f <STRING> [positional]");
}
+TEST_CASE("Matcher validation works as expected", "[args]")
+{
+ args::ArgumentParser parser("Test command");
+ REQUIRE_THROWS_AS(args::ValueFlag<int>(parser, "", "", {}), args::UsageError);
+}
+
#undef ARGS_HXX
#define ARGS_TESTNAMESPACE
#define ARGS_NOEXCEPT
@@ -1088,6 +1094,17 @@ TEST_CASE("Nargs work as expected in noexcept mode", "[args]")
argstest::ArgumentParser parser("Test command");
argstest::NargsValueFlag<int> a(parser, "", "", {'a'}, {3, 2});
+ REQUIRE(parser.GetError() == argstest::Error::Usage);
+ parser.ParseArgs(std::vector<std::string>{"-a", "1", "2"});
+ REQUIRE(parser.GetError() == argstest::Error::Usage);
+}
+
+TEST_CASE("Matcher validation works as expected in noexcept mode", "[args]")
+{
+ argstest::ArgumentParser parser("Test command");
+ argstest::ValueFlag<int> a(parser, "", "", {});
+
+ REQUIRE(parser.GetError() == argstest::Error::Usage);
parser.ParseArgs(std::vector<std::string>{"-a", "1", "2"});
REQUIRE(parser.GetError() == argstest::Error::Usage);
}