Exemple #1
0
        public void TestUInt64Length()
        {
            var value = new UInt64ColumnValue();

            foreach (ulong i in new[] { ulong.MinValue, 1U, 2U, Any.UInt64, 65521U, ulong.MaxValue - 1, ulong.MaxValue })
            {
                TestLengthForStruct(value, i, 8);
            }
        }
Exemple #2
0
        public void TestUInt64ValueAsObject()
        {
            var value = new UInt64ColumnValue();

            foreach (uint i in new[] { ulong.MinValue, 1U, 2U, Any.UInt64, 65521U, ulong.MaxValue - 1, ulong.MaxValue })
            {
                TestValueAsObjectForStruct(value, i);
            }
        }