升级EventHub,测试失败,暂时还不支持分发IPacket
智能大石头 authored at 2025-12-23 17:38:46
287.00 B
Stardust
using Stardust;
using Xunit;

namespace ClientTest;

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

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