Skip to content

Commit 76b35a9

Browse files
author
Cédric Belin
committed
Update the documentation
1 parent 9fe7634 commit 76b35a9

File tree

5 files changed

+28
-0
lines changed

5 files changed

+28
-0
lines changed

test/branch_test.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
namespace Belin.Lcov;
22

3+
/// <summary>
4+
/// Tests the features of the <see cref="BranchCoverage"/> class.
5+
/// </summary>
36
[TestClass]
47
public sealed class BranchCoverageTest {
58

@@ -11,6 +14,9 @@ public void TestToString() {
1114
}
1215
}
1316

17+
/// <summary>
18+
/// Tests the features of the <see cref="BranchData"/> class.
19+
/// </summary>
1420
[TestClass]
1521
public sealed class BranchDataTest {
1622

test/function_test.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
namespace Belin.Lcov;
22

3+
/// <summary>
4+
/// Tests the features of the <see cref="FunctionCoverage"/> class.
5+
/// </summary>
36
[TestClass]
47
public sealed class FunctionCoverageTest {
58

@@ -11,6 +14,9 @@ public void TestToString() {
1114
}
1215
}
1316

17+
/// <summary>
18+
/// Tests the features of the <see cref="FunctionCoverage"/> class.
19+
/// </summary>
1420
[TestClass]
1521
public sealed class FunctionDataTest {
1622

test/line_test.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
namespace Belin.Lcov;
22

3+
/// <summary>
4+
/// Tests the features of the <see cref="LineCoverage"/> class.
5+
/// </summary>
36
[TestClass]
47
public sealed class LineCoverageTest {
58

@@ -11,6 +14,9 @@ public void TestToString() {
1114
}
1215
}
1316

17+
/// <summary>
18+
/// Tests the features of the <see cref="LineCoverage"/> class.
19+
/// </summary>
1420
[TestClass]
1521
public sealed class LineDataTest {
1622

test/report_test.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
namespace Belin.Lcov;
22

3+
/// <summary>
4+
/// Tests the features of the <see cref="Report"/> class.
5+
/// </summary>
36
[TestClass]
47
public sealed class ReportTest {
58

@@ -8,6 +11,10 @@ public sealed class ReportTest {
811
/// </summary>
912
private static string coverage = string.Empty;
1013

14+
/// <summary>
15+
/// Method invoked before the first test is run.
16+
/// </summary>
17+
/// <param name="_">The test context.</param>
1118
[ClassInitialize]
1219
public static void ClassInitialize(TestContext _) {
1320
coverage = File.ReadAllText("../res/lcov.info");

test/source_file_test.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
namespace Belin.Lcov;
22

3+
/// <summary>
4+
/// Tests the features of the <see cref="SourceFile"/> class.
5+
/// </summary>
36
[TestClass]
47
public sealed class SourceFileTest {
58

0 commit comments

Comments
 (0)