only: reducing junit4

This commit is contained in:
rusefillc 2024-02-14 10:59:53 -05:00
parent 294043720e
commit f9726315f9
3 changed files with 2 additions and 9 deletions

View File

@ -6,7 +6,3 @@ apply from: '../../android/dependencies.gradle'
// TODO: rename folder to core_io
// this CORE module cannot depend on model/ini!
dependencies {
testImplementation global_libs.junit
}

View File

@ -1,12 +1,11 @@
package com.rusefi.core.io;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import static org.junit.Assert.assertEquals;
public class BundleUtilTest {
@Test
public void testExtractBundleTarget() {
assertEquals("proteus_f7", BundleUtil.getBundleTarget("rusefi.snapshot.proteus_f7"));
Assertions.assertEquals("proteus_f7", BundleUtil.getBundleTarget("rusefi.snapshot.proteus_f7"));
}
}

View File

@ -14,8 +14,6 @@ dependencies {
implementation project(':autoupdate')
implementation ts_plugin_libs.launcher_api
implementation global_libs.commons_logging
testImplementation global_libs.junit
}
def jarName = 'rusefi_ts_plugin_launcher'