summaryrefslogtreecommitdiff
path: root/tests/ctor/driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ctor/driver.cxx')
-rw-r--r--tests/ctor/driver.cxx60
1 files changed, 0 insertions, 60 deletions
diff --git a/tests/ctor/driver.cxx b/tests/ctor/driver.cxx
deleted file mode 100644
index cf7ec3b..0000000
--- a/tests/ctor/driver.cxx
+++ /dev/null
@@ -1,60 +0,0 @@
-// file : tests/ctor/driver.cxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
-// license : MIT; see accompanying LICENSE file
-
-#include "test.hxx"
-
-int
-main (int argc, char* argv[])
-{
- // Test that we can call all the c-tors unambiguously.
- //
- {
- options o1 (argc, argv);
- options o2 (argc, argv, true);
- options o3 (argc, argv, true,
- cli::unknown_mode::fail);
- options o4 (argc, argv, true,
- cli::unknown_mode::fail,
- cli::unknown_mode::stop);
- }
-
- {
- options o1 (1, argc, argv);
- options o2 (1, argc, argv, true);
- options o3 (1, argc, argv, true,
- cli::unknown_mode::fail);
- options o4 (1, argc, argv, true,
- cli::unknown_mode::fail,
- cli::unknown_mode::stop);
- }
-
- {
- int end;
- options o1 (argc, argv, end);
- options o2 (argc, argv, end, true);
- options o3 (argc, argv, end, true,
- cli::unknown_mode::fail);
- options o4 (argc, argv, end, true,
- cli::unknown_mode::fail,
- cli::unknown_mode::stop);
- }
-
- {
- int end;
- options o1 (1, argc, argv, end);
- options o2 (1, argc, argv, end, true);
- options o3 (1, argc, argv, end, true,
- cli::unknown_mode::fail);
- options o4 (1, argc, argv, end, true,
- cli::unknown_mode::fail,
- cli::unknown_mode::stop);
- }
-
- {
- cli::argv_scanner s (argc, argv);
- options o1 (s);
- options o2 (s, cli::unknown_mode::fail);
- options o3 (s, cli::unknown_mode::fail, cli::unknown_mode::stop);
- }
-}