Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67b43a3 commit adf0d6aCopy full SHA for adf0d6a
1 file changed
sqldev/src/main/java/org/utplsql/sqldev/runner/UtplsqlRunner.xtend
@@ -103,6 +103,7 @@ class UtplsqlRunner implements RealtimeReporterEventConsumer {
103
run.counter.failure = 0
104
run.counter.error = 0
105
run.counter.warning = 0
106
+ run.infoCount = 0
107
run.totalNumberOfTests = -1
108
run.status = UtplsqlResources.getString("RUNNER_INITIALIZING_TEXT")
109
panel.model = run
@@ -157,6 +158,9 @@ class UtplsqlRunner implements RealtimeReporterEventConsumer {
157
158
test.counter = event.counter
159
test.errorStack = event.errorStack
160
test.serverOutput = event.serverOutput
161
+ if (test.serverOutput !== null) {
162
+ run.infoCount = run.infoCount + 1
163
+ }
164
test.failedExpectations = event.failedExpectations
165
test.warnings = event.warnings
166
}
0 commit comments