only: reducing junit4
This commit is contained in:
parent
294043720e
commit
f9726315f9
|
@ -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
|
||||
}
|
|
@ -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"));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue