Starter seems to be engaged forever #1965
This commit is contained in:
parent
ce202c7ed7
commit
c52c6f45c9
|
@ -204,6 +204,10 @@ void EngineTestHelper::moveTimeForwardUs(int deltaTimeUs) {
|
||||||
timeNowUs += deltaTimeUs;
|
timeNowUs += deltaTimeUs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void EngineTestHelper::smartMoveTimeForwardSeconds(int deltaTimeSeconds) {
|
||||||
|
smartMoveTimeForwardUs(MS2US(1000 * deltaTimeSeconds));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* this method executed all pending events wile
|
* this method executed all pending events wile
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -54,6 +54,7 @@ public:
|
||||||
void smartFireRise(float delayMs);
|
void smartFireRise(float delayMs);
|
||||||
void smartFireFall(float delayMs);
|
void smartFireFall(float delayMs);
|
||||||
void smartMoveTimeForwardUs(int deltaTimeUs);
|
void smartMoveTimeForwardUs(int deltaTimeUs);
|
||||||
|
void smartMoveTimeForwardSeconds(int deltaTimeSeconds);
|
||||||
void smartFireTriggerEvents2(int count, float delayMs);
|
void smartFireTriggerEvents2(int count, float delayMs);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue