LogAssertions 0.2.3
Prefix ReservedSee the version list below for details.
dotnet add package LogAssertions --version 0.2.3
NuGet\Install-Package LogAssertions -Version 0.2.3
<PackageReference Include="LogAssertions" Version="0.2.3" />
<PackageVersion Include="LogAssertions" Version="0.2.3" />
<PackageReference Include="LogAssertions" />
paket add LogAssertions --version 0.2.3
#r "nuget: LogAssertions, 0.2.3"
#:package LogAssertions@0.2.3
#addin nuget:?package=LogAssertions&version=0.2.3
#tool nuget:?package=LogAssertions&version=0.2.3
LogAssertions
Framework-agnostic core for fluent log assertions over Microsoft.Extensions.Logging.Testing.FakeLogCollector.
Most users want
LogAssertions.TUnit, not this package directly. This is the shared engine; framework-specific adapter packages add the assertion entry points your test framework expects.
What's in this package
ILogRecordFilter— composable filter interface (Matches(FakeLogRecord)+Description).LogFilter— static factory for every built-in filter shape (AtLevel,Containing,WithMessageTemplate,WithException,WithProperty,WithCategory,WithEventId,WithScope,Where, etc.) plus combinators (All,Any,Not).LogAssertionRendering— failure-snapshot rendering (4-character level abbreviation, props line, scopes line, exception line). Used by adapter packages and by theDumpToextension below.LogCollectorBuilder.Create(LogLevel)— one-line factory returning a wired(ILoggerFactory, FakeLogCollector)tuple.- Inspection extensions on
FakeLogCollector:Filter(params ILogRecordFilter[])returns matching records,CountMatching(params ILogRecordFilter[])returns the count,DumpTo(TextWriter)writes the captured-records snapshot.
Test-framework adapters
| Package | Test framework | Status |
|---|---|---|
LogAssertions.TUnit |
TUnit | Available now |
LogAssertions.NUnit |
NUnit | Possible if there is demand |
LogAssertions.xUnit |
xUnit | Possible if there is demand |
LogAssertions.MSTest |
MSTest | Possible if there is demand |
If you'd find a non-TUnit adapter useful, open a feature request — adapters are not built proactively.
Installation
dotnet add package LogAssertions.TUnit
LogAssertions comes transitively. You don't need to install it directly unless you're building your own adapter package.
Direct use
If you're building a custom adapter or want non-asserting access to filtered records, the public surface lets you compose filters and inspect the collector without going through any test-framework's assertion type:
using LogAssertions;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Testing;
var (factory, collector) = LogCollectorBuilder.Create();
using (factory)
{
var logger = factory.CreateLogger("MyCategory");
logger.LogWarning("validation failed: TimeoutMs out of range");
// Compose a reusable filter:
ILogRecordFilter validationWarning = LogFilter.All(
LogFilter.AtLevel(LogLevel.Warning),
LogFilter.Containing("validation", StringComparison.Ordinal));
// Inspect without asserting:
int count = collector.CountMatching(validationWarning); // 1
var matches = collector.Filter(validationWarning); // IReadOnlyList<FakeLogRecord>
using var writer = new StringWriter();
collector.DumpTo(writer); // print the captured-records snapshot
}
Building a custom adapter
A test-framework adapter package needs to:
- Reference
LogAssertions. - Provide entry-point methods that surface a fluent chain over the framework's assertion type.
- Use
LogFilterfactory methods to build the filter chain. - Use
LogAssertionRendering.AppendCapturedRecords(...)for failure-message snapshot output (so the format stays consistent across adapters).
LogAssertions.TUnit is the reference implementation — see its source for the pattern.
Stability
- The public surfaces above (
ILogRecordFilter,LogFilter,LogAssertionRendering,LogCollectorBuilder, the extension methods onFakeLogCollector) are semver-bound. Breaking changes require a major version bump. - The exact text format of failure-message snapshots rendered by
LogAssertionRenderingis not stable. May gain extra detail or change formatting in any release. Pin filter match counts and broad markers in tests, not exact failure text.
License
MIT — Copyright (c) 2026 John Verheij
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Microsoft.Extensions.Diagnostics.Testing (>= 10.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on LogAssertions:
| Package | Downloads |
|---|---|
|
LogAssertions.TUnit
TUnit-native fluent log-assertion DSL using [AssertionExtension] over Microsoft.Extensions.Logging.Testing.FakeLogCollector. Provides Assert.That(collector).HasLogged()/HasNotLogged() with filter and terminator chaining; emits captured-records snapshot in failure messages. |
GitHub repositories
This package is not used by any popular GitHub repositories.
See CHANGELOG.md