Revert "清理"
猿人易 authored at 2024-06-17 16:53:31
449.00 B
Stardust
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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);
        }
    }
}