minor clean-up
This commit is contained in:
parent
5a0079cc6b
commit
c459020fdd
|
@ -18,7 +18,7 @@ TriggerStimulatorHelper::TriggerStimulatorHelper() {
|
|||
}
|
||||
|
||||
// this is not the only place where we have 'isUpEvent'. todo: reuse
|
||||
static bool isRisingEdge[6] = { false, true, false, true, false, true };
|
||||
static const bool isRisingEdge[6] = { false, true, false, true, false, true };
|
||||
|
||||
// todo: should this method be invoked somewhere deeper? at the moment we have too many usages too high
|
||||
bool isUsefulSignal(trigger_event_e signal, engine_configuration_s *engineConfiguration) {
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
extern int timeNowUs;
|
||||
|
||||
TEST(sensors, testFasterEngineSpinningUp) {
|
||||
// this is just a reference unit test implementation
|
||||
printf("*************************************************** testFasterEngineSpinningUp\r\n");
|
||||
|
||||
EngineTestHelper eth(TEST_ENGINE);
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
extern int timeNowUs;
|
||||
|
||||
TEST(fuelCut, coasting) {
|
||||
// this is just a reference unit test implementation
|
||||
printf("*************************************************** testCoastingFuelCut\r\n");
|
||||
|
||||
EngineTestHelper eth(TEST_ENGINE);
|
||||
|
|
|
@ -7,11 +7,7 @@
|
|||
|
||||
#include "test_trigger_decoder.h"
|
||||
|
||||
extern int timeNowUs;
|
||||
extern EnginePins enginePins;
|
||||
|
||||
TEST(engine, testPlainCrankingWithoutAdvancedFeatures) {
|
||||
// this is just a reference unit test implementation
|
||||
printf("*************************************************** testPlainCrankingWithoutAdvancedFeatures\r\n");
|
||||
|
||||
EngineTestHelper eth(TEST_ENGINE);
|
||||
|
@ -30,8 +26,8 @@ TEST(engine, testPlainCrankingWithoutAdvancedFeatures) {
|
|||
// two simultaneous injections
|
||||
assertEqualsM("plain#2", 4, engine->executor.size());
|
||||
|
||||
eth.assertEvent5(&engine->executor, "sim start", 0, (void*)startSimultaniousInjection, timeNowUs, 97975);
|
||||
eth.assertEvent5(&engine->executor, "sim end", 1, (void*)endSimultaniousInjection, timeNowUs, 100000);
|
||||
eth.assertEvent5(&engine->executor, "sim start", 0, (void*)startSimultaniousInjection, eth.getTimeNowUs(), 97975);
|
||||
eth.assertEvent5(&engine->executor, "sim end", 1, (void*)endSimultaniousInjection, eth.getTimeNowUs(), 100000);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue