| 9 | #define MANUAL_STEP_MATCHER "manual step" |
| 10 | |
| 11 | class ManualStep : public GenericStep { |
| 12 | public: |
| 13 | void body() override{}; |
| 14 | // private: |
| 15 | static const int cukeRegId; |
| 16 | }; |
| 17 | const int ManualStep::cukeRegId = ::cucumber::internal::registerStep<ManualStep>( |
| 18 | MANUAL_STEP_MATCHER, "C:\\Path\\With/Barward/And\\Forward/Slashes.cpp", 42 |
| 19 | ); |
nothing calls this directly
no outgoing calls
no test coverage detected