unit test to validate fresh .ini file

This commit is contained in:
rusefillc 2023-06-29 19:24:11 -04:00
parent 132b6ec158
commit f7d5a1c4d3
1 changed files with 15 additions and 0 deletions

View File

@ -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);
}
}