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

namespace ClientTest.Models;

public class AgentInfoTests
{
    [Fact]
    public void Test1()
    {
        var inf = AgentInfo.GetLocal(true);

        Assert.NotNull(inf);
    }
}