progress
This commit is contained in:
parent
b906d12268
commit
184c389202
|
@ -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);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue