2025-11-04 14:58:04 +08:00

14 lines
274 B
C#

using Xunit;
namespace IP2Region.Net.Test;
public class UtilTest
{
[Theory]
[InlineData("114.114.114.114")]
public void TestIpAddressToUInt32(string value)
{
var uintIp = XDB.Util.IpAddressToUInt32(value);
Console.WriteLine(uintIp);
}
}