@@ -35,83 +35,4 @@ public void Should_Throw_If_IssueProviderSettings_Are_Null()
35
35
result . IsArgumentNullException ( "issueProviderSettings" ) ;
36
36
}
37
37
}
38
-
39
- //public sealed class TheReadIssuesMethod
40
- //{
41
- // [Fact]
42
- // public void Should_Read_Issue_Correct_For_Specification_File()
43
- // {
44
- // // Given
45
- // var fixture = new TapIssuesProviderFixture("specification.tap");
46
-
47
- // // When
48
- // var issues = fixture.ReadIssues().ToList();
49
-
50
- // // Then
51
- // issues.Count.ShouldBe(2);
52
- // }
53
-
54
- // [Fact]
55
- // public void Should_Read_Issue_Correct_For_Stylelint_File_Without_Warnings()
56
- // {
57
- // // Given
58
- // var fixture = new TapIssuesProviderFixture("stylelint-no-warnings.tap");
59
-
60
- // // When
61
- // var issues = fixture.ReadIssues().ToList();
62
-
63
- // // Then
64
- // issues.Count.ShouldBe(0);
65
- // }
66
-
67
- // [Fact]
68
- // public void Should_Read_Issue_Correct_For_Stylelint_File_With_Warnings()
69
- // {
70
- // // Given
71
- // var fixture = new TapIssuesProviderFixture("stylelint-warnings.tap");
72
-
73
- // // When
74
- // var issues = fixture.ReadIssues().ToList();
75
-
76
- // // Then
77
- // issues.Count.ShouldBe(2);
78
-
79
- // var issue = issues[0];
80
- // IssueChecker.Check(
81
- // issue,
82
- // IssueBuilder.NewIssue(
83
- // "Message Foo.",
84
- // "Cake.Issues.Tap.TapIssuesProvider",
85
- // "TAP")
86
- // .InFile("path/to/file1.css")
87
- // //.OfRule("Rule Foo")
88
- // //.WithPriority(IssuePriority.Error)
89
- // .Create());
90
-
91
- // issue = issues[1];
92
- // IssueChecker.Check(
93
- // issue,
94
- // IssueBuilder.NewIssue(
95
- // "Message Foo.",
96
- // "Cake.Issues.Tap.TapIssuesProvider",
97
- // "TAP")
98
- // .InFile("path/to/file2.css")
99
- // //.OfRule("Rule Foo")
100
- // //.WithPriority(IssuePriority.Error)
101
- // .Create());
102
- // }
103
-
104
- // [Fact]
105
- // public void Should_Read_Issue_Correct_For_Stylelint_File_With_Parse_Error()
106
- // {
107
- // // Given
108
- // var fixture = new TapIssuesProviderFixture("stylelint-parse-error.tap");
109
-
110
- // // When
111
- // var issues = fixture.ReadIssues().ToList();
112
-
113
- // // Then
114
- // issues.Count.ShouldBe(1);
115
- // }
116
- //}
117
38
}
0 commit comments