Update HighRevTest.java

This commit is contained in:
mi-hol 2024-02-13 22:37:58 +01:00 committed by GitHub
parent 96bf2ba370
commit e62d813fde
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 0 deletions

View File

@ -29,4 +29,15 @@ public class HighRevTest extends RusefiTestBase {
// tests bug 1873
EcuTestHelper.assertRpmDoesNotJump(60, 5, 110, FAIL, ecu.commandQueue);
}
@Test
public void testBenelliR3() {
ecu.setEngineType(engine_type_e.FRANKENSO_BMW_M73_F);
// set idle RPM
ecu.changeRpm(1500);
// first let's get to RPM near limit
EcuTestHelper.assertRpmDoesNotJump(11000, 5, 40, FAIL, ecu.commandQueue);
// tests RpmLimit
EcuTestHelper.assertRpmDoesNotJump(12000, 5, 110, FAIL, ecu.commandQueue);
}
}