我正在尝试学习如何使用 Cucumber CPP。我最初一直遵循此处的步骤。但是我遇到了一些错误。目前,我正在尝试按照此处的步骤进行操作。当我尝试在 Visual Studio 2015 中构建 Cucumber-CPP.sln 时,它给了我以下错误:
C:\Cucumber-CPP\tests\integration\drivers\BoostDriverTest.cpp(49): error C2039: 'is_initialized': is not a member of 'boost::unit_test::framework'
c:\Boost\boost/test/tree/test_unit.hpp(44): note: see declaration of 'boost::unit_test::framework'
C:\Cucumber-CPP\tests\integration\drivers\BoostDriverTest.cpp(49): error C3861: 'is_initialized': identifier not found
C:\Cucumber-CPP\tests\integration\drivers\BoostDriverTest.cpp(51): error C2039: 'is_initialized': is not a member of 'boost::unit_test::framework'
c:\Boost\boost/test/tree/test_unit.hpp(44): note: see declaration of 'boost::unit_test::framework'
C:\Cucumber-CPP\tests\integration\drivers\BoostDriverTest.cpp(51): error C3861: 'is_initialized': identifier not found
由于这些错误,我认为它没有构建本教程下一步所需的BoostCalculatorSteps.exe 。我无法找出我错过了什么。请给我你的建议。