nextcloud/tests/lib/files/storage/wrapper.php

27 lines
622 B
PHP
Raw Normal View History

2013-05-07 21:42:46 +04:00
<?php
/**
* Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace Test\Files\Storage;
class Wrapper extends Storage {
/**
* @var string tmpDir
*/
private $tmpDir;
public function setUp() {
$this->tmpDir = \OC_Helper::tmpFolder();
$storage = new \OC\Files\Storage\Local(array('datadir' => $this->tmpDir));
2013-06-28 20:18:12 +04:00
$this->instance = new \OC\Files\Storage\Wrapper\Wrapper(array('storage' => $storage));
2013-05-07 21:42:46 +04:00
}
public function tearDown() {
\OC_Helper::rmdirr($this->tmpDir);
}
}