127.0.
智能大石头 authored at 2024-11-20 00:19:29
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);
    }
}