Skip to content

Commit 2275ff5

Browse files
committed
Added coverage report. Improved TestRunnerWindow
1 parent 6fa9831 commit 2275ff5

19 files changed

+2035
-192
lines changed

PlsqlDeveloperUtPlsqlPlugin/PlsqlDeveloperUtPlsqlPlugin/AboutDialog.Designer.cs

Lines changed: 6 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

PlsqlDeveloperUtPlsqlPlugin/PlsqlDeveloperUtPlsqlPlugin/AboutDialog.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
using System.Windows.Forms;
22

3-
namespace PlsqlDeveloperUtPlsqlPlugin
3+
namespace utPLSQL
44
{
55
public partial class AboutDialog : Form
66
{
77
public AboutDialog()
88
{
99
InitializeComponent();
10-
11-
CenterToScreen();
1210
}
1311

1412
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)

PlsqlDeveloperUtPlsqlPlugin/PlsqlDeveloperUtPlsqlPlugin/CodeCoverateReportDialog.Designer.cs

Lines changed: 171 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
using System.Windows.Forms;
2+
3+
namespace utPLSQL
4+
{
5+
public partial class CodeCoverateReportDialog : Form
6+
{
7+
public CodeCoverateReportDialog(string path)
8+
{
9+
InitializeComponent();
10+
11+
txtPaths.Text = path;
12+
}
13+
14+
public string GetSchemas()
15+
{
16+
return txtSchemas.Text;
17+
}
18+
19+
public string GetIncludes()
20+
{
21+
return txtIncludes.Text;
22+
}
23+
24+
public string GetExcludes()
25+
{
26+
return txtExluces.Text;
27+
}
28+
}
29+
}

0 commit comments

Comments
 (0)