diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-12 10:43:34 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-25 16:04:56 +0200 |
commit | cbba55a26c9a2114c64b97d8b7dfdd41413356cd (patch) | |
tree | 76a9ba6c7607a182c98d600c9f97cd9fe20f9fad /apps/user_ldap/tests | |
parent | 4ac283ecd364829d7d4c8a631182770c49dfbd6f (diff) | |
download | nextcloud-server-cbba55a26c9a2114c64b97d8b7dfdd41413356cd.tar.gz nextcloud-server-cbba55a26c9a2114c64b97d8b7dfdd41413356cd.zip |
Move Group_LDAP and Group_Proxy to PSR-4
Diffstat (limited to 'apps/user_ldap/tests')
-rw-r--r-- | apps/user_ldap/tests/GroupLDAPTest.php (renamed from apps/user_ldap/tests/group_ldap.php) | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/user_ldap/tests/group_ldap.php b/apps/user_ldap/tests/GroupLDAPTest.php index 51bb1d84732..2075f42fa51 100644 --- a/apps/user_ldap/tests/group_ldap.php +++ b/apps/user_ldap/tests/GroupLDAPTest.php @@ -24,21 +24,21 @@ * */ -namespace OCA\user_ldap\tests; +namespace OCA\User_LDAP\Tests; -use \OCA\user_ldap\GROUP_LDAP as GroupLDAP; +use OCA\User_LDAP\Group_LDAP as GroupLDAP; use \OCA\user_ldap\lib\Access; use \OCA\user_ldap\lib\Connection; use \OCA\user_ldap\lib\ILDAPWrapper; /** - * Class Test_Group_Ldap + * Class GroupLDAPTest * * @group DB * * @package OCA\user_ldap\tests */ -class Test_Group_Ldap extends \Test\TestCase { +class GroupLDAPTest extends \Test\TestCase { private function getAccessMock() { static $conMethods; static $accMethods; @@ -325,7 +325,7 @@ class Test_Group_Ldap extends \Test\TestCase { * tests that a user listing is complete, if all it's members have the group * as their primary. */ - public function testUsersInGroupPrimaryMembersOnly() { + public function testUsersInGroupPrimaryMembersOnly() { $access = $this->getAccessMock(); $this->enableGroups($access); @@ -360,7 +360,7 @@ class Test_Group_Ldap extends \Test\TestCase { * tests that a user counting is complete, if all it's members have the group * as their primary. */ - public function testCountUsersInGroupPrimaryMembersOnly() { + public function testCountUsersInGroupPrimaryMembersOnly() { $access = $this->getAccessMock(); $this->enableGroups($access); |