Merge branch 'master' into v3.1
大石头 authored at 2024-07-13 19:03:18
216.00 B
Stardust
using Stardust.Models;
using Xunit;

namespace ClientTest;

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

        Assert.NotNull(inf);
    }
}