增强 IsMatch 方法支持 ? 通配符匹配
智能大石头 authored at 2025-09-19 09:55:30
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);
        }
    }
}