auto-sync

This commit is contained in:
rusEfi 2015-03-07 19:10:40 -06:00
parent 215bfb64e2
commit 7cd1490dc9
1 changed files with 3 additions and 0 deletions

View File

@ -7,6 +7,7 @@ import org.junit.Test;
import static com.rusefi.ConfigurationImageDiff.findDifferences; import static com.rusefi.ConfigurationImageDiff.findDifferences;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
/** /**
* (c) Andrey Belomutskiy * (c) Andrey Belomutskiy
@ -22,6 +23,8 @@ public class ConfigurationImageDiffTest {
assertNotNull(p); assertNotNull(p);
assertEquals(5, (int) p.first); assertEquals(5, (int) p.first);
assertEquals(15, (int) p.second); assertEquals(15, (int) p.second);
p = findDifferences(new ConfigurationImage(data1), new ConfigurationImage(data2), 15);
assertNull(p);
} }
{ {
byte[] data1 = {1, 2, 3, 4, 5, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6}; byte[] data1 = {1, 2, 3, 4, 5, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6};