Fix namespaces in tests/lib/groups/

This commit is contained in:
Joas Schilling 2016-05-19 08:44:41 +02:00
parent b1458d590d
commit 995d4b7ecd
No known key found for this signature in database
GPG Key ID: 70A0B324C41C0946
4 changed files with 12 additions and 6 deletions

View File

@ -24,12 +24,14 @@
* *
*/ */
namespace Test\Group;
/** /**
* Class Test_Group_Backend * Class Test_Group_Backend
* *
* @group DB * @group DB
*/ */
abstract class Test_Group_Backend extends \Test\TestCase { abstract class Backend extends \Test\TestCase {
/** /**
* @var \OC\Group\Backend $backend * @var \OC\Group\Backend $backend
*/ */

View File

@ -23,12 +23,14 @@
* *
*/ */
namespace Test\Group;
/** /**
* Class Test_Group_Database * Class Database
* *
* @group DB * @group DB
*/ */
class Test_Group_Database extends Test_Group_Backend { class Database extends Backend {
private $groups = array(); private $groups = array();
/** /**

View File

@ -20,12 +20,14 @@
* *
*/ */
namespace Test\Group;
/** /**
* Class Test_Group_Dummy * Class Dummy
* *
* @group DB * @group DB
*/ */
class Test_Group_Dummy extends Test_Group_Backend { class Dummy extends Backend {
protected function setUp() { protected function setUp() {
parent::setUp(); parent::setUp();
$this->backend=new \Test\Util\Group\Dummy(); $this->backend=new \Test\Util\Group\Dummy();

View File

@ -22,7 +22,7 @@
namespace Test\Group; namespace Test\Group;
class Test_MetaData extends \Test\TestCase { class MetaDataTest extends \Test\TestCase {
/** @var \OC\Group\Manager */ /** @var \OC\Group\Manager */
private $groupManager; private $groupManager;
/** @var \OCP\IUserSession */ /** @var \OCP\IUserSession */