mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-18 05:03:07 +00:00
21 lines
446 B
C#
21 lines
446 B
C#
using CodexTests;
|
|
using DistTestCore;
|
|
using NUnit.Framework;
|
|
|
|
namespace CodexReleaseTests.NodeTests
|
|
{
|
|
[TestFixture]
|
|
public class ProfilerCheckTest : CodexDistTest
|
|
{
|
|
[Test]
|
|
public void IsProfilingImage()
|
|
{
|
|
var node = StartCodex();
|
|
var log = node.DownloadLog();
|
|
node.Stop(waitTillStopped: false);
|
|
|
|
log.AssertLogContains("Enabling profiling");
|
|
}
|
|
}
|
|
}
|