Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8ea932c

Browse files
committed
Improved handling on code coverage when 0 tests are run
1 parent ac5e8a9 commit 8ea932c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

PlsqlDeveloperUtPlsqlPlugin/utPLSQL.UI/TestRunnerWindow.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,10 +161,9 @@ private void CollectResults(bool coverage)
161161
progressBar.ForeColor = Color.DarkRed;
162162
}
163163

164-
if (!coverage)
164+
if (!coverage || gridResults.Rows.Count == 0)
165165
{
166166
txtStatus.Text = "Finished";
167-
168167
Running = false;
169168
}
170169
});

0 commit comments

Comments
 (0)