This commit is contained in:
rusefi 2020-06-11 21:06:07 -04:00
parent b906d12268
commit 184c389202
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
package com.rusefi.ui;
import com.opensr5.io.ConfigurationImageFile;
import org.junit.Test;
import java.io.IOException;
/**
* from IDEA this unit test needs to be exectuted with "empty" working directory
*/
public class TuneReadWriteTest {
@Test
public void testReadTsTune() throws IOException {
String binary = "ui/src/test/resources/frankenso/current_configuration.rusefi_binary";
System.out.println("Reading " + binary);
ConfigurationImageFile.readFromFile(binary);
}
}