File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
sqldev/src/main/java/org/utplsql/sqldev/runner Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,7 @@ class UtplsqlRunner implements RealtimeReporterEventConsumer {
103103 run. counter. failure = 0
104104 run. counter. error = 0
105105 run. counter. warning = 0
106+ run. infoCount = 0
106107 run. totalNumberOfTests = - 1
107108 run. status = UtplsqlResources . getString(" RUNNER_INITIALIZING_TEXT" )
108109 panel. model = run
@@ -157,6 +158,9 @@ class UtplsqlRunner implements RealtimeReporterEventConsumer {
157158 test. counter = event. counter
158159 test. errorStack = event. errorStack
159160 test. serverOutput = event. serverOutput
161+ if (test. serverOutput !== null ) {
162+ run. infoCount = run. infoCount + 1
163+ }
160164 test. failedExpectations = event. failedExpectations
161165 test. warnings = event. warnings
162166 }
You can’t perform that action at this time.
0 commit comments