Пример #1
0
        public async void TestGetByte()
        {
            var reader = new ListDataReader <Student>(_Students);
            var ps     = _Properties.Where(i => i.CanRead).ToArray();

            foreach (var st in _Students)
            {
                await reader.ReadAsync();

                var index = 0;
                foreach (var p in ps)
                {
                    if (p.GetMethod.Invoke(st, new object[0]) != null &&
                        (p.PropertyType == typeof(byte) || p.PropertyType == typeof(byte?)))
                    {
                        Assert.Equal(p.GetMethod.Invoke(st, new object[0]), reader.GetByte(index));
                    }
                    else if (p.PropertyType.GetTypeInfo().IsGenericType &&
                             p.PropertyType.GetGenericTypeDefinition() == typeof(Nullable <>) &&
                             p.GetMethod.Invoke(st, new object[0]) == null)
                    {
                        Assert.ThrowsAny <RuntimeBinderException>(() => reader.GetByte(index));
                    }
                    else
                    {
                        Assert.ThrowsAny <RuntimeBinderException>(() => reader.GetByte(index));
                    }
                    index++;
                }
            }
        }
        public void TestGetGetByte()
        {
            var reader = new ListDataReader <Student>(_Students);

            reader.Read();
            var col = "Byte2";

            Assert.Equal(2, reader.GetByte(col));
            reader.Read();
            reader.Read();
            Assert.Equal(3, reader.GetByte(col));
        }