v11.10.2026.0101 重构IEventBus,支持EventHub;ApiHttpClient支持文件下载
石头 authored at 2026-01-02 02:25:52
343.00 B
X
using NewLife.Data;
using NewLife.Security;
using Xunit;

namespace XUnitTest.Security
{
    public class RandTests
    {
        [Fact]
        public void Fill()
        {
            var area = new GeoArea();
            Rand.Fill(area);

            Assert.True(area.Code > 0);
            Assert.NotEmpty(area.Name);
        }
    }
}