1 | <?php |
||
5 | class ZipAlreadyExtractCheckerTest extends \PHPUnit_Framework_TestCase |
||
6 | { |
||
7 | |||
8 | protected $archivesDir; |
||
9 | |||
10 | protected $successArchive = 'a.zip'; |
||
11 | |||
12 | protected $warningArchive = 'b.zip'; |
||
13 | |||
14 | protected $errorArchive = 'c.zip'; |
||
15 | |||
16 | public function __construct() |
||
20 | |||
21 | public function testSuccessIfArchiveIsAlreadyExtract() |
||
26 | |||
27 | public function testWarningIfExtractedDirectoryIsLowerThanArchive() |
||
32 | |||
33 | public function testErrorIfArchiveINotExtract() |
||
38 | } |
||
39 |