Auto: abcip-1.1 — LINT/ULINT 64-bit fidelity

Closes #225
This commit is contained in:
Joseph Doherty
2026-04-25 12:44:43 -04:00
parent 21e0fdd4cd
commit 2e6228a243
3 changed files with 8 additions and 4 deletions

View File

@@ -124,8 +124,11 @@ public sealed class AbCipDriverTests
{
AbCipDataType.Bool.ToDriverDataType().ShouldBe(DriverDataType.Boolean);
AbCipDataType.DInt.ToDriverDataType().ShouldBe(DriverDataType.Int32);
AbCipDataType.LInt.ToDriverDataType().ShouldBe(DriverDataType.Int64);
AbCipDataType.ULInt.ToDriverDataType().ShouldBe(DriverDataType.UInt64);
AbCipDataType.Real.ToDriverDataType().ShouldBe(DriverDataType.Float32);
AbCipDataType.LReal.ToDriverDataType().ShouldBe(DriverDataType.Float64);
AbCipDataType.String.ToDriverDataType().ShouldBe(DriverDataType.String);
AbCipDataType.Dt.ToDriverDataType().ShouldBe(DriverDataType.Int64);
}
}