auto-sync

This commit is contained in:
rusEfi 2015-05-03 22:04:57 -04:00
parent a16db82701
commit dc2132e8a7
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(createFuelPumpTest());
content.add(createSparkTest()); content.add(createSparkTest());
content.add(createInjectorTest()); content.add(createInjectorTest());
content.add(new JLabel()); content.add(createMILTest());
content.add(new MessagesView().messagesScroll); 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() { private Component createFanTest() {
BenchTestPanel panel = new BenchTestPanel("radiator_fan.jpg", "Radiator Fan") { BenchTestPanel panel = new BenchTestPanel("radiator_fan.jpg", "Radiator Fan") {
@NotNull @NotNull