Jds.TestingUtils.Logging
0.1.0
dotnet add package Jds.TestingUtils.Logging --version 0.1.0
NuGet\Install-Package Jds.TestingUtils.Logging -Version 0.1.0
<PackageReference Include="Jds.TestingUtils.Logging" Version="0.1.0" />
paket add Jds.TestingUtils.Logging --version 0.1.0
#r "nuget: Jds.TestingUtils.Logging, 0.1.0"
// Install Jds.TestingUtils.Logging as a Cake Addin #addin nuget:?package=Jds.TestingUtils.Logging&version=0.1.0 // Install Jds.TestingUtils.Logging as a Cake Tool #tool nuget:?package=Jds.TestingUtils.Logging&version=0.1.0
TestingUtils.Logging (NuGet)
Methods and types supporting the use of Microsoft.Extensions.Logging.Abstractions
(e.g., ILogger
and ILogger<>
) within unit and integration tests.
Usage Examples
"Service" using ILogger<>
In this example, an application "service" performs logging of its internal work. It requires an ILogger<>
in its constructor.
Note that the term "service" here is intentionally loose. It is intended only to be a type which performs a unit of work or presents a required interface.
In a production implementation, a similar type might have I/O dependencies (e.g., an Entity Framework
DbContext
, or anHttpClient
). Alternately, they may require logging because they perform logic or handle requests which must be captured, e.g., for triage or compliance.When identifying if this pattern fits a use case, common applicable type name suffixes:
*Service
,*Repository
,*Handler
This example is centered around capturing logged messages which occur during unit testing.
- Example service interface under test
- Example service implementation (the system under test)
- Example unit tests
ASP.NET Core API Controller
using ILogger<>
In this example, an ASP.NET Core API Controller
performs logging of its request processing. This example builds upon the service example, above.
This example is centered around capturing logged messages which occur during ASP.NET Core integration testing.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Microsoft.Extensions.Logging.Abstractions (>= 7.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.1.0 | 954 | 5/22/2023 |
0.1.0-build-20230522-012359... | 148 | 5/22/2023 |