Extensions.Logging.Mock 9.0.3

dotnet add package Extensions.Logging.Mock --version 9.0.3
                    
NuGet\Install-Package Extensions.Logging.Mock -Version 9.0.3
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Extensions.Logging.Mock" Version="9.0.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Extensions.Logging.Mock" Version="9.0.3" />
                    
Directory.Packages.props
<PackageReference Include="Extensions.Logging.Mock" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Extensions.Logging.Mock --version 9.0.3
                    
#r "nuget: Extensions.Logging.Mock, 9.0.3"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Extensions.Logging.Mock&version=9.0.3
                    
Install Extensions.Logging.Mock as a Cake Addin
#tool nuget:?package=Extensions.Logging.Mock&version=9.0.3
                    
Install Extensions.Logging.Mock as a Cake Tool

Extensions.Logging.Mock

A unit-testing extension for verifying a logger mock.

Configuration

To configure the intrastructure you just have to call AddMock() on the ILoggingBuilder instance. when using AddLogging(). This will add a custom ILoggerProvider which will return the underlying instance of the configured Mock<ILogger> instance.

[TestFixture]
public class LoggerTests
{
	public Mock<ILogger> MockLogger { get; set; }
	public ILogger Logger { get; set; }
	public ILogger<TestClass> GenericLogger { get; set; }

	[SetUp]
	public void SetUp()
	{
		this.MockLogger = new Mock<ILogger>();

		IServiceCollection services = new ServiceCollection();

		services.AddLogging(builder =>
		{
			builder.SetMinimumLevel(LogLevel.Trace);
			builder.AddConsole();
			builder.AddMock(this.MockLogger);
		});

		IServiceProvider serviceProvider = services.BuildServiceProvider();

		ILoggerFactory loggerFactory = serviceProvider.GetRequiredService<ILoggerFactory>();
		this.Logger = loggerFactory.CreateLogger("TestLogger");
		this.GenericLogger = loggerFactory.CreateLogger<TestClass>();
	}
}

Usage

To verify that the desired log methods was called just verify the mock instance using VerifyLog().DebugWasCalled().

[Test]
public void ShouldVerifyDebugCalled()
{
	this.Logger.LogDebug("Log Message");
	this.MockLogger.VerifyLog().DebugWasCalled();
}

To verify that the desired log methods message output equals a desired values just verify the mock instance using VerifyLog().DebugWasCalled().MessageEquals("Log Message").

[Test]
public void ShouldVerifyDebugMessage()
{
	this.Logger.LogDebug("Log Message");
	this.MockLogger.VerifyLog().DebugWasCalled().MessageEquals("Log Message");
}

To verify that the desired log method was called a certain amount of times just verify the mock instance using VerifyLog().DebugWasCalled().Times(2).

[Test]
public void ShouldVerifyDebugCalledTimes()
{
	this.Logger.LogDebug("Log Message");
	this.Logger.LogDebug("Log Message");
	this.MockLogger.VerifyLog().DebugWasCalled().Times(2);
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
9.0.3 513 3/3/2025
9.0.2 1,411 11/16/2024
9.0.1 491 11/14/2024
9.0.0 502 11/14/2024
1.2.4 1,144 11/1/2024
1.2.3 4,788 7/9/2024
1.2.2 1,644 3/19/2024
1.2.1 1,837 11/16/2023
1.2.0 24,753 1/18/2023
1.1.3 1,051 11/19/2022
1.1.2 866 10/12/2022
1.1.1 2,140 6/3/2022
1.1.0 931 5/7/2022
1.0.4 741 4/14/2022
1.0.3 462 4/12/2022
1.0.2 525 12/16/2021