mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-03 07:43:52 +00:00
14 lines
344 B
C#
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.");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|