Skip to content

Commit 453afee

Browse files
Improve code coverage
1 parent 3fa3b11 commit 453afee

121 files changed

Lines changed: 292 additions & 157 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

SecurityService.BusinessLogic/TestMessagingServiceClient.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
namespace SecurityService.BusinessLogic;
22

33
using System;
4+
using System.Diagnostics.CodeAnalysis;
45
using System.Threading;
56
using System.Threading.Tasks;
67
using MessagingService.Client;
78
using MessagingService.DataTransferObjects;
89
using Shared.Logger;
910

11+
[ExcludeFromCodeCoverage]
1012
public class TestMessagingServiceClient : IMessagingServiceClient
1113
{
1214
public SendEmailRequest LastEmailRequest { get; private set; }

SecurityService.Database/SecurityService.Database.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>net7.0</TargetFramework>
5+
<DebugType>None</DebugType>
56
</PropertyGroup>
67

78
<ItemGroup>

SecurityService.MySqlMigrations/SecurityService.MySqlMigrations.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>net7.0</TargetFramework>
5+
<DebugType>None</DebugType>
56
</PropertyGroup>
67
<ItemGroup>
78
<PackageReference Include="Duende.IdentityServer.EntityFramework" Version="6.2.0-rc.1" />

SecurityService.SqlServerMigrations/SecurityService.SqlServerMigrations.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>net7.0</TargetFramework>
5+
<DebugType>None</DebugType>
56
</PropertyGroup>
67
<ItemGroup>
78
<PackageReference Include="Duende.IdentityServer.EntityFramework" Version="6.2.0-rc.1" />

SecurityService.UnitTests/SecurityService.UnitTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>net7.0</TargetFramework>
5-
<DebugType>Full</DebugType>
5+
<DebugType>None</DebugType>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
88

SecurityService/Pages/Account/AccessDenied.cshtml renamed to SecurityService.UserInterface/Pages/Account/AccessDenied.cshtml

File renamed without changes.

SecurityService/Pages/Account/AccessDenied.cshtml.cs renamed to SecurityService.UserInterface/Pages/Account/AccessDenied.cshtml.cs

File renamed without changes.

SecurityService/Pages/Account/ChangePassword/Index.cshtml renamed to SecurityService.UserInterface/Pages/Account/ChangePassword/Index.cshtml

File renamed without changes.

SecurityService/Pages/Account/ChangePassword/Index.cshtml.cs renamed to SecurityService.UserInterface/Pages/Account/ChangePassword/Index.cshtml.cs

File renamed without changes.

SecurityService/Pages/Account/ChangePassword/InputModel.cs renamed to SecurityService.UserInterface/Pages/Account/ChangePassword/InputModel.cs

File renamed without changes.

0 commit comments

Comments
 (0)