unit test to validate fresh .ini file
This commit is contained in:
parent
132b6ec158
commit
f7d5a1c4d3
|
@ -0,0 +1,15 @@
|
|||
package com.rusefi.tune;
|
||||
|
||||
import com.opensr5.ini.IniFileModel;
|
||||
import com.rusefi.tools.tune.WriteSimulatorConfiguration;
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.junit.Assert.assertNotNull;
|
||||
|
||||
public class ReadCurrentIniTest {
|
||||
@Test
|
||||
public void test() {
|
||||
IniFileModel ini = new IniFileModel().readIniFile("../" + WriteSimulatorConfiguration.INI_FILE_FOR_SIMULATOR);
|
||||
assertNotNull(ini);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue