Skip to content

Commit 5bbac06

Browse files
committed
Changed include name from core.hpp to defs.hpp
1 parent efecfd0 commit 5bbac06

File tree

12 files changed

+9
-17
lines changed

12 files changed

+9
-17
lines changed

examples/Calc/CalcFeatures/BoostCalculatorSteps.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <boost/test/unit_test.hpp>
2-
#include <cucumber-cpp/core.hpp>
2+
#include <cucumber-cpp/defs.hpp>
33

44
#include <Calculator.h>
55

examples/Calc/CalcFeatures/CppSpecCalculatorSteps.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <CppSpec/CppSpec.h>
2-
#include <cucumber-cpp/core.hpp>
2+
#include <cucumber-cpp/defs.hpp>
33

44
#include <Calculator.h>
55

examples/Calc/CalcFeatures/GTestCalculatorSteps.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <gtest/gtest.h>
2-
#include <cucumber-cpp/core.hpp>
2+
#include <cucumber-cpp/defs.hpp>
33

44
#include <Calculator.h>
55

examples/FeatureShowcase/table/TableSteps.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <gtest/gtest.h>
2-
#include <cucumber-cpp/core.hpp>
2+
#include <cucumber-cpp/defs.hpp>
33

44
#include <string>
55
#include <map>

examples/FeatureShowcase/tag/TagSteps.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <gtest/gtest.h>
2-
#include <cucumber-cpp/core.hpp>
2+
#include <cucumber-cpp/defs.hpp>
33

44
#include <iostream>
55
using namespace std;
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
1-
#ifndef CUKE_CORE_HPP_
2-
#define CUKE_CORE_HPP_
3-
41
#include "internal/step/StepManager.hpp"
52
#include "internal/hook/HookRegistrar.hpp"
63
#include "internal/ContextManager.hpp"
7-
#include "internal/CukeCommands.hpp"
84

95
#include "internal/Macros.hpp"
106
#include "internal/drivers/DriverSelector.hpp"
11-
12-
#endif /* CUKE_CORE_HPP_ */

src/main.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#include <cucumber-cpp/core.hpp>
21
#include <cucumber-cpp/internal/CukeEngineImpl.hpp>
32
#include <cucumber-cpp/internal/connectors/wire/WireServer.hpp>
43
#include <cucumber-cpp/internal/connectors/wire/WireProtocol.hpp>

tests/integration/ContextHandlingTest.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#include <cucumber-cpp/core.hpp>
2-
31
#include <gtest/gtest.h>
42

53
#include "../utils/ContextManagerTestDouble.hpp"

tests/integration/drivers/BoostDriverTest.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <boost/test/unit_test.hpp>
2-
#include <cucumber-cpp/core.hpp>
2+
#include <cucumber-cpp/defs.hpp>
33

44
#include "../../utils/DriverTestRunner.hpp"
55

tests/integration/drivers/CppSpecDriverTest.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <CppSpec/CppSpec.h>
2-
#include <cucumber-cpp/core.hpp>
2+
#include <cucumber-cpp/defs.hpp>
33

44
#include "../../utils/DriverTestRunner.hpp"
55

tests/integration/drivers/GTestDriverTest.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <gtest/gtest.h>
2-
#include <cucumber-cpp/core.hpp>
2+
#include <cucumber-cpp/defs.hpp>
33

44
#include "../../utils/DriverTestRunner.hpp"
55

tests/utils/DriverTestRunner.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#define CUKE_DRIVERTESTRUNNER_HPP_
33

44
#include "StepManagerTestDouble.hpp"
5+
#include <cucumber-cpp/internal/CukeCommands.hpp>
56

67
#include <iostream>
78
#include <string>

0 commit comments

Comments
 (0)