other little things are different

This commit is contained in:
Matthew Kennedy 2024-08-31 11:43:19 -07:00 committed by rusefillc
parent 59c1a10bd0
commit 2ffe26d1b4
1 changed files with 3 additions and 1 deletions

View File

@ -10,6 +10,8 @@
#include "spark_logic.h" #include "spark_logic.h"
using ::testing::_; using ::testing::_;
using ::testing::InSequence;
using ::testing::StrictMock;
TEST(ignition, twoCoils) { TEST(ignition, twoCoils) {
EngineTestHelper eth(engine_type_e::FRANKENSO_BMW_M73_F); EngineTestHelper eth(engine_type_e::FRANKENSO_BMW_M73_F);
@ -197,7 +199,7 @@ TEST(ignition, oddCylinderWastedSpark) {
StrictMock<MockExecutor> mockExec; StrictMock<MockExecutor> mockExec;
EngineTestHelper eth(engine_type_e::TEST_ENGINE); EngineTestHelper eth(engine_type_e::TEST_ENGINE);
engine->scheduler.setMockExecutor(&mockExec); engine->executor.setMockExecutor(&mockExec);
engineConfiguration->cylindersCount = 1; engineConfiguration->cylindersCount = 1;
engineConfiguration->firingOrder = FO_1; engineConfiguration->firingOrder = FO_1;
engineConfiguration->ignitionMode = IM_WASTED_SPARK; engineConfiguration->ignitionMode = IM_WASTED_SPARK;