星尘监控自动从本地星尘代理获取地址
大石头 authored at 2021-01-03 22:33:26
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);
        }
    }
}