@@ -54,6 +54,7 @@ class RunnerPanel implements FocusListener {
5454 JLabel errorCounterValueLabel
5555 JLabel failureCounterValueLabel
5656 JLabel disabledCounterValueLabel
57+ JLabel warningsCounterValueLabel
5758 JProgressBar progressBar;
5859 TestOverviewTableModel testOverviewTableModel
5960 JTable testOverviewTable
@@ -118,6 +119,7 @@ class RunnerPanel implements FocusListener {
118119 errorCounterValueLabel. text = ' ' ' «run.counter.error»' ' '
119120 failureCounterValueLabel. text = ' ' ' «run.counter.failure»' ' '
120121 disabledCounterValueLabel. text = ' ' ' «run.counter.disabled»' ' '
122+ warningsCounterValueLabel. text = ' ' ' «run.counter.warning»' ' '
121123 if (run. totalNumberOfTests == 0 ) {
122124 progressBar. value = 100
123125 } else {
@@ -304,6 +306,11 @@ class RunnerPanel implements FocusListener {
304306 UtplsqlResources . getIcon(" DISABLED_ICON" ), JLabel :: LEADING )
305307 disabledCounterValueLabel = new JLabel
306308 counterPanel. add(makeLabelledComponent(disabledCounterLabel, disabledCounterValueLabel))
309+ // - Warnings counter
310+ val warningsCounterLabel = new JLabel (UtplsqlResources . getString(" RUNNER_WARNINGS_LABEL" ) + " :" ,
311+ UtplsqlResources . getIcon(" WARNING_ICON" ), JLabel :: LEADING )
312+ warningsCounterValueLabel = new JLabel
313+ counterPanel. add(makeLabelledComponent(warningsCounterLabel, warningsCounterValueLabel))
307314 // - add everything to basePanel
308315 c. gridx = 0
309316 c. gridy = 1
0 commit comments