Skip to content

Commit bfe4d60

Browse files
authored
.NET coverage (#20)
* Provide example for .NET coverage * Remove coverlet from refs
1 parent 974e777 commit bfe4d60

11 files changed

+257
-0
lines changed

.github/workflows/net.yml

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
name: .NET - coverlet test coverage
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
push:
7+
branches:
8+
- main
9+
- 'releases/*'
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout Code
16+
uses: actions/checkout@v3
17+
with:
18+
ref: ${{ github.event.pull_request.head.sha }}
19+
fetch-depth: 0
20+
21+
- name: Set up .NET
22+
uses: actions/setup-dotnet@v3
23+
with:
24+
dotnet-version: '7.0'
25+
26+
- name: Restore dependencies
27+
working-directory: NET/coverlet
28+
run: dotnet restore
29+
30+
- name: Build solution
31+
working-directory: NET/coverlet
32+
run: dotnet build --no-restore
33+
34+
- name: Change directory to test project
35+
working-directory: NET/coverlet
36+
run: |
37+
dotnet add package coverlet.msbuild
38+
39+
- name: Run tests with code coverage
40+
run: dotnet test /p:CollectCoverage=true /p:CoverletOutput=./.qodana/code-coverage /p:CoverletOutputFormat=lcov
41+
working-directory: NET/coverlet
42+
43+
- name: Archive coverage data
44+
uses: actions/upload-artifact@v2
45+
with:
46+
name: net-coverage-data
47+
path: NET/coverlet/.qodana/code-coverage
48+
49+
- name: Qodana Scan
50+
uses: JetBrains/qodana-action@main
51+
env:
52+
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN_NET }}
53+
with:
54+
args: "-i,NET/coverlet,--linter,jetbrains/qodana-dotnet:latest"
55+
pr-mode: false

NET/coverlet/Class1.cs

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
namespace QodanaCoverageTest;
2+
3+
public class Class1 : Interface1
4+
{
5+
public Class1()
6+
{
7+
var y = 5;
8+
}
9+
10+
public void UsedMethod()
11+
{
12+
LocalMethod();
13+
void LocalMethod()
14+
{
15+
var x = 5;
16+
}
17+
void UnusedLocalMethod() { }
18+
}
19+
20+
public void UsedMethodWithIf(int i)
21+
{
22+
if (i == 1)
23+
{
24+
Console.Write(i);
25+
}
26+
else
27+
{
28+
Console.Write(i);
29+
Console.Write(i);
30+
}
31+
}
32+
33+
public int UsedLambdaMethod() => 4;
34+
35+
public int UnusedLambdaMethod() => 5;
36+
37+
private void UnusedMethod()
38+
{
39+
void UnusedLocalMethod()
40+
{
41+
42+
}
43+
}
44+
}

NET/coverlet/Class2.cs

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
namespace QodanaCoverageTest;
2+
3+
public class Class2
4+
{
5+
public Class2()
6+
{
7+
8+
}
9+
10+
public void UnusedMethod()
11+
{
12+
13+
}
14+
15+
public int MyProperty => 42;
16+
17+
public int MyProperty1
18+
{
19+
get => MyProperty;
20+
set => MyProperty = value;
21+
}
22+
23+
public int MyProperty2
24+
{
25+
get;
26+
set;
27+
}
28+
}

NET/coverlet/Enum1.cs

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
namespace QodanaCoverageTest;
2+
3+
public enum Enum1
4+
{
5+
VAL1,
6+
VAL2,
7+
}

NET/coverlet/Interface1.cs

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
namespace QodanaCoverageTest;
2+
3+
public interface Interface1
4+
{
5+
void Foo()
6+
{
7+
8+
}
9+
10+
void Bar()
11+
{
12+
13+
}
14+
}

NET/coverlet/NotInReportClass.cs

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
namespace QodanaCoverageTest;
2+
3+
public class NotInReportClass : Interface1
4+
{
5+
public Class1()
6+
{
7+
var y = 42;
8+
}
9+
10+
public void UsedMethodWithIf(int i)
11+
{
12+
if (i == 1)
13+
{
14+
Console.Write(i);
15+
}
16+
else
17+
{
18+
Console.Write(i);
19+
Console.Write(i);
20+
}
21+
}
22+
}
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net7.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
</PropertyGroup>
8+
9+
<ItemGroup>
10+
<Compile Remove="UnitTestProject\**" />
11+
</ItemGroup>
12+
13+
<ItemGroup>
14+
<EmbeddedResource Remove="UnitTestProject\**" />
15+
</ItemGroup>
16+
17+
<ItemGroup>
18+
<None Remove="UnitTestProject\**" />
19+
</ItemGroup>
20+
21+
</Project>

NET/coverlet/QodanaCoverageTest.sln

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QodanaCoverageTest", "QodanaCoverageTest.csproj", "{2849E952-A756-4191-AC98-AF80D2848500}"
4+
EndProject
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTestProject", "UnitTestProject\UnitTestProject.csproj", "{4ED497EE-E195-4408-B5B9-861FED661884}"
6+
EndProject
7+
Global
8+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9+
Debug|Any CPU = Debug|Any CPU
10+
Release|Any CPU = Release|Any CPU
11+
EndGlobalSection
12+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13+
{2849E952-A756-4191-AC98-AF80D2848500}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{2849E952-A756-4191-AC98-AF80D2848500}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{2849E952-A756-4191-AC98-AF80D2848500}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{2849E952-A756-4191-AC98-AF80D2848500}.Release|Any CPU.Build.0 = Release|Any CPU
17+
{4ED497EE-E195-4408-B5B9-861FED661884}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
18+
{4ED497EE-E195-4408-B5B9-861FED661884}.Debug|Any CPU.Build.0 = Debug|Any CPU
19+
{4ED497EE-E195-4408-B5B9-861FED661884}.Release|Any CPU.ActiveCfg = Release|Any CPU
20+
{4ED497EE-E195-4408-B5B9-861FED661884}.Release|Any CPU.Build.0 = Release|Any CPU
21+
EndGlobalSection
22+
EndGlobal
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
using QodanaCoverageTest;
2+
3+
namespace UnitTestProject;
4+
5+
public class Tests
6+
{
7+
[SetUp]
8+
public void Setup()
9+
{
10+
}
11+
12+
[Test]
13+
public void Test1()
14+
{
15+
var cls = new Class1();
16+
cls.UsedMethod();
17+
cls.UsedMethodWithIf(1);
18+
cls.UsedLambdaMethod();
19+
Assert.Pass();
20+
}
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net7.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
8+
<IsPackable>false</IsPackable>
9+
</PropertyGroup>
10+
11+
<ItemGroup>
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2"/>
13+
<PackageReference Include="NUnit" Version="3.13.3"/>
14+
<PackageReference Include="NUnit3TestAdapter" Version="4.3.0"/>
15+
<PackageReference Include="NUnit.Analyzers" Version="3.5.0"/>
16+
</ItemGroup>
17+
18+
<ItemGroup>
19+
<ProjectReference Include="..\QodanaCoverageTest.csproj" />
20+
</ItemGroup>
21+
22+
</Project>
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
global using NUnit.Framework;

0 commit comments

Comments
 (0)