| 61 | class CheckAllParametersWithMacro : public CheckAllParameters { |
| 62 | public: |
| 63 | void body() override { |
| 64 | REGEX_PARAM(int, got_arg_0_int); |
| 65 | EXPECT_EQ(arg_0_int, got_arg_0_int); |
| 66 | |
| 67 | REGEX_PARAM(double, got_arg_1_double); |
| 68 | EXPECT_EQ(arg_1_double, got_arg_1_double); |
| 69 | |
| 70 | REGEX_PARAM(string, got_arg_2_string); |
| 71 | EXPECT_EQ(arg_2_string, got_arg_2_string); |
| 72 | |
| 73 | REGEX_PARAM(string, got_arg_3_string_with_spaces); |
| 74 | EXPECT_EQ(arg_3_string_with_spaces, got_arg_3_string_with_spaces); |
| 75 | } |
| 76 | }; |
| 77 | |
| 78 | class CheckAllParametersWithFuncArgs : public CheckAllParameters { |
nothing calls this directly
no outgoing calls
no test coverage detected