MCPcopy Create free account
hub / github.com/cucumber/cucumber-cpp / CheckAllParameters

Class CheckAllParameters

tests/unit/CukeCommandsTest.cpp:17–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15};
16
17class CheckAllParameters : public GenericStep {
18protected:
19 static const int arg_0_int;
20 static const double arg_1_double;
21 static const string arg_2_string;
22 static const string arg_3_string_with_spaces;
23
24public:
25 static InvokeArgs buildInvokeArgs() {
26 InvokeArgs mixedArgs;
27 mixedArgs.addArg(toString(arg_0_int));
28 mixedArgs.addArg(toString(arg_1_double));
29 mixedArgs.addArg(toString(arg_2_string));
30 mixedArgs.addArg(toString(arg_3_string_with_spaces));
31 return mixedArgs;
32 }
33};
34
35const int CheckAllParameters::arg_0_int(42);
36const double CheckAllParameters::arg_1_double(4.2);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected