File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 26
26
#include < sstream>
27
27
#include < string>
28
28
29
- #include < gherkin/parser.hpp>
30
- #include < gherkin/pickle_compiler.hpp>
31
- #include < gherkin/utils.hpp>
29
+ #include < cucumber/ gherkin/parser.hpp>
30
+ #include < cucumber/ gherkin/pickle_compiler.hpp>
31
+ #include < cucumber/ gherkin/utils.hpp>
32
32
33
33
#include " cucumber_bdd/runner.hpp"
34
34
@@ -46,10 +46,10 @@ std::string type_name();
46
46
47
47
void TestRunnerBase::loadFeature (const std::string& path) {
48
48
// std::regex testFilter = std::regex(::testing::GTEST_FLAG(filter), std::regex::extended);
49
- std::string featureContents = gherkin::slurp (path);
50
- gherkin::parser parser;
49
+ std::string featureContents = cucumber:: gherkin::slurp (path);
50
+ cucumber:: gherkin::parser parser;
51
51
cucumber::messages::gherkin_document doc = parser.parse (path, featureContents);
52
- gherkin::pickle_compiler compiler;
52
+ cucumber:: gherkin::pickle_compiler compiler;
53
53
54
54
if (doc.feature .has_value ()) {
55
55
for (cucumber::messages::pickle scenario : compiler.compile (doc, path)) {
You can’t perform that action at this time.
0 commit comments