custom-board-bundle-sample-.../unit_tests/tests/test_cj125.cpp

24 lines
391 B
C++
Raw Normal View History

2019-01-03 04:57:34 -08:00
/*
* test_cj125.cpp
*
* Created on: Jan 3, 2019
* @author Andrey Belomutskiy, (c) 2012-2019
*/
2019-01-03 17:14:23 -08:00
#include "gtest/gtest.h"
2019-02-01 20:16:34 -08:00
#include "CJ125_logic.h"
#include "engine_test_helper.h"
TEST(testCJ125, testInitialState) {
CJ125 cj;
ASSERT_EQ(cj.state, CJ125_INIT);
ASSERT_FALSE(cj.isWorkingState());
WITH_ENGINE_TEST_HELPER(FORD_ASPIRE_1996);
ASSERT_EQ(engine->sensors.vBatt, 0);
2019-01-03 04:57:34 -08:00
}