Skip to content

Commit 3ab2034

Browse files
committed
Excluded Views from Code Coverage
1 parent 1337f84 commit 3ab2034

File tree

7 files changed

+14
-1
lines changed

7 files changed

+14
-1
lines changed

RetailCoder.VBE/UI/SourceControl/BranchesControl.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
using System;
22
using System.Collections.Generic;
33
using System.ComponentModel;
4+
using System.Diagnostics.CodeAnalysis;
45
using System.Windows.Forms;
56

67
namespace Rubberduck.UI.SourceControl
78
{
9+
[ExcludeFromCodeCoverage]
810
public partial class BranchesControl : UserControl, IBranchesView
911
{
1012
public BranchesControl()

RetailCoder.VBE/UI/SourceControl/ChangesControl.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
using System;
22
using System.Collections.Generic;
33
using System.ComponentModel;
4+
using System.Diagnostics.CodeAnalysis;
45
using System.Drawing;
56
using System.Windows.Forms;
67
using Rubberduck.SourceControl;
78

89
namespace Rubberduck.UI.SourceControl
910
{
11+
[ExcludeFromCodeCoverage]
1012
public partial class ChangesControl : UserControl, IChangesView
1113
{
1214
public ChangesControl()

RetailCoder.VBE/UI/SourceControl/CreateBranchForm.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
using System;
2+
using System.Diagnostics.CodeAnalysis;
23
using System.Windows.Forms;
34

45
namespace Rubberduck.UI.SourceControl
56
{
7+
[ExcludeFromCodeCoverage]
68
public partial class CreateBranchForm : Form, ICreateBranchView
79
{
810
public CreateBranchForm()

RetailCoder.VBE/UI/SourceControl/MergeForm.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
using System;
22
using System.Collections.Generic;
33
using System.ComponentModel;
4+
using System.Diagnostics.CodeAnalysis;
45
using System.Windows.Forms;
56

67
namespace Rubberduck.UI.SourceControl
78
{
9+
[ExcludeFromCodeCoverage]
810
public partial class MergeForm : Form, IMergeView
911
{
1012
public MergeForm()

RetailCoder.VBE/UI/SourceControl/SettingsControl.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
using System;
2+
using System.Diagnostics.CodeAnalysis;
23
using System.Windows.Forms;
34
using Rubberduck.Settings;
45

56
namespace Rubberduck.UI.SourceControl
67
{
8+
[ExcludeFromCodeCoverage]
79
public partial class SettingsControl : UserControl, ISettingsView
810
{
911
public SettingsControl()

RetailCoder.VBE/UI/SourceControl/SourceControlPanel.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
namespace Rubberduck.UI.SourceControl
66
{
7+
[ExcludeFromCodeCoverage]
78
[SuppressMessage("ReSharper", "ArrangeThisQualifier")]
89
public partial class SourceControlPanel : UserControl, ISourceControlView
910
{

RetailCoder.VBE/UI/SourceControl/UnSyncedCommitsControl.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
using System.Windows.Forms;
1+
using System.Diagnostics.CodeAnalysis;
2+
using System.Windows.Forms;
23

34
namespace Rubberduck.UI.SourceControl
45
{
6+
[ExcludeFromCodeCoverage]
57
public partial class UnSyncedCommitsControl : UserControl, IUnSyncedCommitsView
68
{
79
public UnSyncedCommitsControl()

0 commit comments

Comments
 (0)