We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f02ae72 commit 9649b27Copy full SHA for 9649b27
1 file changed
PlsqlDeveloperUtPlsqlPlugin/utPLSQL.UI/TestRunnerWindow.cs
@@ -97,8 +97,7 @@ private void RunTests(string type, string owner, string name, string procedure)
97
Running = true;
98
}
99
100
- private void RunWithCoverage(string type, string owner, string name, string procedure,
101
- CodeCoverageReportDialog codeCoverageReportDialog)
+ private void RunWithCoverage(string type, string owner, string name, string procedure, CodeCoverageReportDialog codeCoverageReportDialog)
102
{
103
var schemas = ConvertToVarcharList(codeCoverageReportDialog.GetSchemas());
104
var includes = ConvertToVarcharList(codeCoverageReportDialog.GetIncludes());
@@ -153,9 +152,7 @@ private void CollectResults(bool coverage)
153
152
txtEnd.Text = @event.run.endTime.ToString(CultureInfo.CurrentCulture);
154
txtTime.Text = @event.run.executionTime + " s";
155
156
- txtTests.Text =
157
- (completedTests > totalNumberOfTests ? totalNumberOfTests : completedTests) + "/" +
158
- totalNumberOfTests;
+ txtTests.Text = (completedTests > totalNumberOfTests ? totalNumberOfTests : completedTests) + "/" + totalNumberOfTests;
159
txtFailures.Text = @event.run.counter.failure + "";
160
txtErrors.Text = @event.run.counter.error + "";
161
txtDisabled.Text = @event.run.counter.disabled + "";
0 commit comments