节点在线、应用在线、配置在线使用令牌查询
大石头 authored at 2021-12-16 19:49:30
295.00 B
Stardust
using Stardust;
using Xunit;

namespace ClientTest.Clients;

public class LocalStarClientTests
{
    [Fact]
    public void Info()
    {
        var client = new LocalStarClient();
        var inf = client.GetInfo();

        Assert.NotNull(inf);
        Assert.NotEmpty(inf.Server);
    }
}