add tests for LcovReporter class
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using Xunit;
|
||||
|
||||
namespace Coverlet.Core.Reporters.Tests
|
||||
{
|
||||
public class LcovReporterTests
|
||||
{
|
||||
[Fact]
|
||||
public void TestFormat()
|
||||
{
|
||||
LcovReporter reporter = new LcovReporter();
|
||||
CoverageResult result = new CoverageResult { Data = new Data() };
|
||||
|
||||
Assert.Equal(string.Empty, reporter.Format(result));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user