File tree Expand file tree Collapse file tree 5 files changed +28
-0
lines changed Expand file tree Collapse file tree 5 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 1
1
namespace Belin . Lcov ;
2
2
3
+ /// <summary>
4
+ /// Tests the features of the <see cref="BranchCoverage"/> class.
5
+ /// </summary>
3
6
[ TestClass ]
4
7
public sealed class BranchCoverageTest {
5
8
@@ -11,6 +14,9 @@ public void TestToString() {
11
14
}
12
15
}
13
16
17
+ /// <summary>
18
+ /// Tests the features of the <see cref="BranchData"/> class.
19
+ /// </summary>
14
20
[ TestClass ]
15
21
public sealed class BranchDataTest {
16
22
Original file line number Diff line number Diff line change 1
1
namespace Belin . Lcov ;
2
2
3
+ /// <summary>
4
+ /// Tests the features of the <see cref="FunctionCoverage"/> class.
5
+ /// </summary>
3
6
[ TestClass ]
4
7
public sealed class FunctionCoverageTest {
5
8
@@ -11,6 +14,9 @@ public void TestToString() {
11
14
}
12
15
}
13
16
17
+ /// <summary>
18
+ /// Tests the features of the <see cref="FunctionCoverage"/> class.
19
+ /// </summary>
14
20
[ TestClass ]
15
21
public sealed class FunctionDataTest {
16
22
Original file line number Diff line number Diff line change 1
1
namespace Belin . Lcov ;
2
2
3
+ /// <summary>
4
+ /// Tests the features of the <see cref="LineCoverage"/> class.
5
+ /// </summary>
3
6
[ TestClass ]
4
7
public sealed class LineCoverageTest {
5
8
@@ -11,6 +14,9 @@ public void TestToString() {
11
14
}
12
15
}
13
16
17
+ /// <summary>
18
+ /// Tests the features of the <see cref="LineCoverage"/> class.
19
+ /// </summary>
14
20
[ TestClass ]
15
21
public sealed class LineDataTest {
16
22
Original file line number Diff line number Diff line change 1
1
namespace Belin . Lcov ;
2
2
3
+ /// <summary>
4
+ /// Tests the features of the <see cref="Report"/> class.
5
+ /// </summary>
3
6
[ TestClass ]
4
7
public sealed class ReportTest {
5
8
@@ -8,6 +11,10 @@ public sealed class ReportTest {
8
11
/// </summary>
9
12
private static string coverage = string . Empty ;
10
13
14
+ /// <summary>
15
+ /// Method invoked before the first test is run.
16
+ /// </summary>
17
+ /// <param name="_">The test context.</param>
11
18
[ ClassInitialize ]
12
19
public static void ClassInitialize ( TestContext _ ) {
13
20
coverage = File . ReadAllText ( "../res/lcov.info" ) ;
Original file line number Diff line number Diff line change 1
1
namespace Belin . Lcov ;
2
2
3
+ /// <summary>
4
+ /// Tests the features of the <see cref="SourceFile"/> class.
5
+ /// </summary>
3
6
[ TestClass ]
4
7
public sealed class SourceFileTest {
5
8
You can’t perform that action at this time.
0 commit comments