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 {
103
103
run. counter. failure = 0
104
104
run. counter. error = 0
105
105
run. counter. warning = 0
106
+ run. infoCount = 0
106
107
run. totalNumberOfTests = - 1
107
108
run. status = UtplsqlResources . getString(" RUNNER_INITIALIZING_TEXT" )
108
109
panel. model = run
@@ -157,6 +158,9 @@ class UtplsqlRunner implements RealtimeReporterEventConsumer {
157
158
test. counter = event. counter
158
159
test. errorStack = event. errorStack
159
160
test. serverOutput = event. serverOutput
161
+ if (test. serverOutput !== null ) {
162
+ run. infoCount = run. infoCount + 1
163
+ }
160
164
test. failedExpectations = event. failedExpectations
161
165
test. warnings = event. warnings
162
166
}
You can’t perform that action at this time.
0 commit comments