File tree Expand file tree Collapse file tree 5 files changed +8
-29
lines changed Expand file tree Collapse file tree 5 files changed +8
-29
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -6,15 +6,15 @@ namespace Coverlet.Core.Reporters.Tests
6
6
public class CoberturaReporterTests
7
7
{
8
8
[ Fact ]
9
- public void TestFormat ( )
9
+ public void TestReport ( )
10
10
{
11
11
CoverageResult result = new CoverageResult ( ) ;
12
12
result . Identifier = Guid . NewGuid ( ) . ToString ( ) ;
13
13
Lines lines = new Lines ( ) ;
14
14
lines . Add ( 1 , new LineInfo { Hits = 1 } ) ;
15
15
lines . Add ( 2 , new LineInfo { Hits = 0 } ) ;
16
16
Methods methods = new Methods ( ) ;
17
- methods . Add ( "System.Void Coverlet.Core.Reporters.Tests.CoberturaReporterTests::TestFormat ()" , lines ) ;
17
+ methods . Add ( "System.Void Coverlet.Core.Reporters.Tests.CoberturaReporterTests::TestReport ()" , lines ) ;
18
18
Classes classes = new Classes ( ) ;
19
19
classes . Add ( "Coverlet.Core.Reporters.Tests.CoberturaReporterTests" , methods ) ;
20
20
Documents documents = new Documents ( ) ;
Original file line number Diff line number Diff line change @@ -6,15 +6,15 @@ namespace Coverlet.Core.Reporters.Tests
6
6
public class JsonReporterTests
7
7
{
8
8
[ Fact ]
9
- public void TestFormat ( )
9
+ public void TestReport ( )
10
10
{
11
11
CoverageResult result = new CoverageResult ( ) ;
12
12
result . Identifier = Guid . NewGuid ( ) . ToString ( ) ;
13
13
Lines lines = new Lines ( ) ;
14
14
lines . Add ( 1 , new LineInfo { Hits = 1 } ) ;
15
15
lines . Add ( 2 , new LineInfo { Hits = 0 } ) ;
16
16
Methods methods = new Methods ( ) ;
17
- methods . Add ( "System.Void Coverlet.Core.Reporters.Tests.JsonReporterTests.TestFormat ()" , lines ) ;
17
+ methods . Add ( "System.Void Coverlet.Core.Reporters.Tests.JsonReporterTests.TestReport ()" , lines ) ;
18
18
Classes classes = new Classes ( ) ;
19
19
classes . Add ( "Coverlet.Core.Reporters.Tests.JsonReporterTests" , methods ) ;
20
20
Documents documents = new Documents ( ) ;
Original file line number Diff line number Diff line change @@ -6,15 +6,15 @@ namespace Coverlet.Core.Reporters.Tests
6
6
public class LcovReporterTests
7
7
{
8
8
[ Fact ]
9
- public void TestFormat ( )
9
+ public void TestReport ( )
10
10
{
11
11
CoverageResult result = new CoverageResult ( ) ;
12
12
result . Identifier = Guid . NewGuid ( ) . ToString ( ) ;
13
13
Lines lines = new Lines ( ) ;
14
14
lines . Add ( 1 , new LineInfo { Hits = 1 } ) ;
15
15
lines . Add ( 2 , new LineInfo { Hits = 0 } ) ;
16
16
Methods methods = new Methods ( ) ;
17
- methods . Add ( "System.Void Coverlet.Core.Reporters.Tests.LcovReporterTests.TestFormat ()" , lines ) ;
17
+ methods . Add ( "System.Void Coverlet.Core.Reporters.Tests.LcovReporterTests.TestReport ()" , lines ) ;
18
18
Classes classes = new Classes ( ) ;
19
19
classes . Add ( "Coverlet.Core.Reporters.Tests.LcovReporterTests" , methods ) ;
20
20
Documents documents = new Documents ( ) ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ namespace Coverlet.Core.Reporters.Tests
6
6
public class OpenCoverReporterTests
7
7
{
8
8
[ Fact ]
9
- public void TestFormat ( )
9
+ public void TestReport ( )
10
10
{
11
11
CoverageResult result = new CoverageResult ( ) ;
12
12
result . Identifier = Guid . NewGuid ( ) . ToString ( ) ;
@@ -42,7 +42,7 @@ private static Documents CreateFirstDocuments()
42
42
lines . Add ( 1 , new LineInfo { Hits = 1 } ) ;
43
43
lines . Add ( 2 , new LineInfo { Hits = 0 } ) ;
44
44
Methods methods = new Methods ( ) ;
45
- methods . Add ( "System.Void Coverlet.Core.Reporters.Tests.OpenCoverReporterTests.TestFormat ()" , lines ) ;
45
+ methods . Add ( "System.Void Coverlet.Core.Reporters.Tests.OpenCoverReporterTests.TestReport ()" , lines ) ;
46
46
Classes classes = new Classes ( ) ;
47
47
classes . Add ( "Coverlet.Core.Reporters.Tests.OpenCoverReporterTests" , methods ) ;
48
48
Documents documents = new Documents ( ) ;
You can’t perform that action at this time.
0 commit comments