File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
sqldev/src/main/java/org/utplsql/sqldev/runner Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ class UtplsqlRunner implements RealtimeReporterEventConsumer {
129129 run. executionTime = event. executionTime
130130 run. errorStack = event. errorStack
131131 run. serverOutput = event. serverOutput
132- run. status = String . format( UtplsqlResources . getString(" RUNNER_FINNISHED_TEXT" ), event . executionTime )
132+ run. status = UtplsqlResources . getString(" RUNNER_FINNISHED_TEXT" )
133133 panel. update(reporterId)
134134 }
135135
@@ -182,7 +182,7 @@ class UtplsqlRunner implements RealtimeReporterEventConsumer {
182182 } else {
183183 test. startTime = sysdate
184184 }
185- run. status = event. id
185+ run. status = ' ' ' « event.id»... ' ' '
186186 run. currentTestNumber = event. testNumber
187187 run. currentTest = test
188188 panel. update(reporterId)
@@ -241,6 +241,8 @@ class UtplsqlRunner implements RealtimeReporterEventConsumer {
241241 }
242242 if (run. totalNumberOfTests < 0 ) {
243243 run. status = UtplsqlResources . getString(" RUNNER_NO_TESTS_FOUND_TEXT" )
244+ run. executionTime = new Double (System . currentTimeMillis - run. start)/ 1000
245+ run. endTime = sysdate
244246 run. totalNumberOfTests = 0
245247 panel. update(reporterId)
246248 }
You can’t perform that action at this time.
0 commit comments