aboutsummaryrefslogtreecommitdiff
path: root/src/tests
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/optparser.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tests/optparser.cpp b/src/tests/optparser.cpp
index 5c91351..449677d 100644
--- a/src/tests/optparser.cpp
+++ b/src/tests/optparser.cpp
@@ -34,10 +34,11 @@ public:
34 true 34 true
35 ); 35 );
36 addOption( sVar, 's', "str", "Set a variable, see what it does."); 36 addOption( sVar, 's', "str", "Set a variable, see what it does.");
37 addOption( iBob, "bob", "Change iBob to wahtever you want."); 37 addOption( iBob, "bob", "Change iBob to whatever you want.");
38 addOption( dBob, 'd', "Change dBob to wahtever you want."); 38 addOption( dBob, 'd', "Change dBob to whatever you want.");
39 39
40 setOverride("str", "Bob!"); 40 setOverride("str", "Bob!");
41 setHelpDefault("bob", "=542");
41 42
42 addHelpOption(); 43 addHelpOption();
43 44