2
0
mirror of synced 2025-01-12 17:44:08 +00:00
cs-codex-dist-tests/Tests/DistTestCore/DownloadedLogExtensions.cs
2023-09-20 10:51:47 +02:00

14 lines
344 B
C#

using Core;
using NUnit.Framework;
namespace DistTestCore
{
public static class DownloadedLogExtensions
{
public static void AssertLogContains(this IDownloadedLog log, string expectedString)
{
Assert.That(log.DoesLogContain(expectedString), $"Did not find '{expectedString}' in log.");
}
}
}