Fix namespace of tests/cache/

This commit is contained in:
Joas Schilling 2016-05-18 18:53:12 +02:00
parent c54d79947b
commit 1b6cd583f7
No known key found for this signature in database
GPG Key ID: 70A0B324C41C0946
4 changed files with 6 additions and 4 deletions

View File

@ -29,7 +29,7 @@ namespace Test\Cache;
*
* @package Test\Cache
*/
class CappedMemoryCache extends \Test_Cache {
class CappedMemoryCache extends TestCache {
public function setUp() {
parent::setUp();
$this->instance = new \OC\Cache\CappedMemoryCache();

View File

@ -29,7 +29,7 @@ namespace Test\Cache;
*
* @package Test\Cache
*/
class FileCache extends \Test_Cache {
class FileCache extends TestCache {
/**
* @var string
* */

View File

@ -6,7 +6,9 @@
* See the COPYING-README file.
*/
abstract class Test_Cache extends \Test\TestCase {
namespace Test\Cache;
abstract class TestCache extends \Test\TestCase {
/**
* @var \OCP\ICache cache;
*/

View File

@ -9,7 +9,7 @@
namespace Test\Memcache;
abstract class Cache extends \Test_Cache {
abstract class Cache extends \Test\Cache\TestCache {
/**
* @var \OCP\IMemcache cache;
*/