| 1 |
#ifndef QUAZIP_TEST_QUAZIPFILE_H |
| 2 |
#define QUAZIP_TEST_QUAZIPFILE_H |
| 3 |
|
| 4 |
/* |
| 5 |
Copyright (C) 2005-2014 Sergey A. Tachenov |
| 6 |
|
| 7 |
This file is part of QuaZIP test suite. |
| 8 |
|
| 9 |
QuaZIP is free software: you can redistribute it and/or modify |
| 10 |
it under the terms of the GNU Lesser General Public License as published by |
| 11 |
the Free Software Foundation, either version 2.1 of the License, or |
| 12 |
(at your option) any later version. |
| 13 |
|
| 14 |
QuaZIP is distributed in the hope that it will be useful, |
| 15 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 |
GNU Lesser General Public License for more details. |
| 18 |
|
| 19 |
You should have received a copy of the GNU Lesser General Public License |
| 20 |
along with QuaZIP. If not, see <http://www.gnu.org/licenses/>. |
| 21 |
|
| 22 |
See COPYING file for the full LGPL text. |
| 23 |
|
| 24 |
Original ZIP package is copyrighted by Gilles Vollant and contributors, |
| 25 |
see quazip/(un)zip.h files for details. Basically it's the zlib license. |
| 26 |
*/ |
| 27 |
|
| 28 |
#include <QObject> |
| 29 |
#include <QStringList> |
| 30 |
|
| 31 |
class TestQuaZipFile: public QObject { |
| 32 |
Q_OBJECT |
| 33 |
private slots: |
| 34 |
void zipUnzip_data(); |
| 35 |
void zipUnzip(); |
| 36 |
void bytesAvailable_data(); |
| 37 |
void bytesAvailable(); |
| 38 |
void atEnd_data(); |
| 39 |
void atEnd(); |
| 40 |
void pos_data(); |
| 41 |
void pos(); |
| 42 |
void getZip(); |
| 43 |
void setZipName(); |
| 44 |
void getFileInfo(); |
| 45 |
void setFileName(); |
| 46 |
void constructorDestructor(); |
| 47 |
void setFileAttrs(); |
| 48 |
void largeFile(); |
| 49 |
}; |
| 50 |
|
| 51 |
#endif // QUAZIP_TEST_QUAZIPFILE_H |