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

Method body

tests/unit/CukeCommandsTest.cpp:63–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61class CheckAllParametersWithMacro : public CheckAllParameters {
62public:
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
78class CheckAllParametersWithFuncArgs : public CheckAllParameters {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected