Beispiel #1
0
        public void TestUInt16ValueAsObject()
        {
            var value = new UInt16ColumnValue();

            for (ushort i = ushort.MinValue; i < ushort.MaxValue; ++i)
            {
                TestValueAsObjectForStruct(value, i);
            }
        }
Beispiel #2
0
        public void TestUInt16Length()
        {
            var value = new UInt16ColumnValue();

            for (ushort i = ushort.MinValue; i < ushort.MaxValue; ++i)
            {
                TestLengthForStruct(value, i, 2);
            }
        }