nextcloud/tests/lib/Archive/ZIPTest.php

24 lines
479 B
PHP
Raw Normal View History

<?php
/**
* Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
2016-05-18 19:46:03 +03:00
namespace Test\Archive;
use OC\Archive\ZIP;
2016-05-18 19:46:03 +03:00
class ZIPTest extends TestBase {
2012-10-06 00:24:36 +04:00
protected function getExisting() {
2016-05-18 19:46:03 +03:00
$dir = \OC::$SERVERROOT . '/tests/data';
return new ZIP($dir . '/data.zip');
2012-10-06 00:24:36 +04:00
}
2012-10-06 00:24:36 +04:00
protected function getNew() {
2016-05-18 19:46:03 +03:00
return new ZIP(\OCP\Files::tmpFile('.zip'));
}
}