Possibility to pass class method reference
[command.git] / tests / argument / handles_negative_float_value.cpp
index 0279cac8617dd0a8e704dfc670becb59f5b7271d..c9e1e8fdb307024e5ede19834cb7e0401f84e3ff 100644 (file)
@@ -11,24 +11,27 @@ typedef float ArgumentType;
 
 ArgumentType test;
 
-void function(ArgumentType value) {
+void _function(ArgumentType value) {
     test = value;
 }
 
 int main() {
-    Argument<ArgumentType> argument("Argument as float", function);
+    Argument<ArgumentType> argument("Argument as negative float", _function);
 
     if (argument.understand(VALUE)) {
         argument.handle();
     }
+    else {
+        cout << argument.describe() << " do not understand " << VALUE " value\n";
+        return 1;
+    }
 
     if (test == std::stof(VALUE)) {
-        cout << "Argument class handles negative float values\n";
+        cout << argument.describe() << " handles negative float values\n";
         return 0;
     }
 
-    cout << "Argument class do not handle negative float values\n";
-
+    cout << argument.describe() << " do not handle negative float values\n";
 
     return 1;
 }