Beispiel #1
0
        public void ListTest6(Table tbl, uint num)
        {
            uint count = 1234;

            StringRangeParams ps = new StringRangeParams();

            ps.Count(count);

            uint expected = count;

            PerformListTest(tbl, ps, expected);
        }
Beispiel #2
0
        public void ListTest1(Table tbl, uint num)
        {
            uint count = 111;

            StringRangeParams ps = new StringRangeParams();

            ps.StartKey(Utils.Id(100));
            ps.Count(count);

            uint expected = count;

            PerformListTest(tbl, ps, expected);
        }