auto-sync

This commit is contained in:
rusEfi 2015-05-03 22:04:57 -04:00
parent c8fc9e1485
commit 38aee25110
2 changed files with 11 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

View File

@ -20,10 +20,20 @@ public class BenchTestPane {
content.add(createFuelPumpTest());
content.add(createSparkTest());
content.add(createInjectorTest());
content.add(new JLabel());
content.add(createMILTest());
content.add(new MessagesView().messagesScroll);
}
private Component createMILTest() {
BenchTestPanel panel = new BenchTestPanel("check_engine.jpg", "MIL") {
@NotNull
protected String getCommand() {
return "milbench";
}
};
return panel.getContent();
}
private Component createFanTest() {
BenchTestPanel panel = new BenchTestPanel("radiator_fan.jpg", "Radiator Fan") {
@NotNull