public void Int64ToInt64()
        {
            var  typeHandler = new Int64TypeHandler();
            long expected    = 1L;
            var  actual      = typeHandler.GetValue(MockTypeHandlerDbDataReader.Of(expected), 1, typeof(long));

            Assert.Equal(expected, actual);
        }
Exemple #2
0
        public void Test(Data.DataReaderWrapper dataReader)
        {
            var typeHandler = new Int64TypeHandler();

            var val = typeHandler.GetValue(dataReader, 1, typeof(long));
        }