| 15 | }; |
| 16 | |
| 17 | class CheckAllParameters : public GenericStep { |
| 18 | protected: |
| 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 | |
| 24 | public: |
| 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 | |
| 35 | const int CheckAllParameters::arg_0_int(42); |
| 36 | const double CheckAllParameters::arg_1_double(4.2); |
nothing calls this directly
no outgoing calls
no test coverage detected