Beispiel #1
0
        public void UnzipFromChunks_UsingSmallerBufferSizeAndThreadNumTest()
        {
            uint threadsCount = Archiver.ChooseWorkersCount() / 2;

            Archiver.UnzipFromChunks(outFile, unzipFile, smallerBufferSize, threadsCount);
        }
Beispiel #2
0
        public void UnzipFromChunks_UsingDifferentThreadNumTest()
        {
            uint threadsCount = Archiver.ChooseWorkersCount() / 2;

            Archiver.UnzipFromChunks(outFile, unzipFile, bufferSize, threadsCount);
        }