From e62d813fde6d0cc2397a8c492afda9d020d1cc67 Mon Sep 17 00:00:00 2001 From: mi-hol <22799428+mi-hol@users.noreply.github.com> Date: Tue, 13 Feb 2024 22:37:58 +0100 Subject: [PATCH] Update HighRevTest.java --- .../main/java/com/rusefi/f4discovery/HighRevTest.java | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/java_console/autotest/src/main/java/com/rusefi/f4discovery/HighRevTest.java b/java_console/autotest/src/main/java/com/rusefi/f4discovery/HighRevTest.java index fc30ec0b66..063edbfd63 100644 --- a/java_console/autotest/src/main/java/com/rusefi/f4discovery/HighRevTest.java +++ b/java_console/autotest/src/main/java/com/rusefi/f4discovery/HighRevTest.java @@ -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); + } }