Example #1
0
        public void BlockSortTest007()
        {
            BlockSort bSort     = new BlockSort(new byte[] { 5 }, 1);
            int       markerpos = 1;

            bSort.Sort(ref markerpos);
        }
Example #2
0
        public void BlockSortTest001()
        {
            BlockSort bSort     = new BlockSort();
            int       markerpos = 0;

            Assert.Throws <DjvuInvalidOperationException>(() => bSort.Sort(ref markerpos));
        }