mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-05 23:13:08 +00:00
23 lines
453 B
C#
23 lines
453 B
C#
|
|
using CodexDistTests.TestCore;
|
|||
|
|
using NUnit.Framework;
|
|||
|
|
|
|||
|
|
namespace CodexDistTests.BasicTests
|
|||
|
|
{
|
|||
|
|
[TestFixture]
|
|||
|
|
public class DebugEndpointTests : DistTest
|
|||
|
|
{
|
|||
|
|
[Test]
|
|||
|
|
public void GetDebugInfo()
|
|||
|
|
{
|
|||
|
|
CreateCodexNode();
|
|||
|
|
|
|||
|
|
var node = GetCodexNode();
|
|||
|
|
var debugInfo = node.GetDebugInfo();
|
|||
|
|
|
|||
|
|
Assert.That(debugInfo.spr, Is.Not.Empty);
|
|||
|
|
|
|||
|
|
DestroyCodexNode();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|