‪TYPO3CMS  10.4
BackendUserGroupRepositoryTest.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the TYPO3 CMS project.
5  *
6  * It is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License, either version 2
8  * of the License, or any later version.
9  *
10  * For the full copyright and license information, please read the
11  * LICENSE.txt file that was distributed with this source code.
12  *
13  * The TYPO3 project - inspiring people to share!
14  */
15 
17 
21 use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
22 
26 class ‪BackendUserGroupRepositoryTest extends UnitTestCase
27 {
32  {
33  $objectManager = $this->createMock(ObjectManagerInterface::class);
34  $fixture = new ‪BackendUserGroupRepository($objectManager);
35  $querySettings = $this->createMock(Typo3QuerySettings::class);
36  $querySettings->expects(self::once())->method('setRespectStoragePage')->with(false);
37  $objectManager->expects(self::once())->method('get')->with(Typo3QuerySettings::class)->willReturn($querySettings);
38  $fixture->initializeObject();
39  }
40 
45  {
46  $objectManager = $this->createMock(ObjectManagerInterface::class);
48  $fixture = $this->getMockBuilder(BackendUserGroupRepository::class)
49  ->setMethods(['setDefaultQuerySettings'])
50  ->setConstructorArgs([$objectManager])
51  ->getMock();
52  $querySettings = $this->createMock(Typo3QuerySettings::class);
53  $objectManager->expects(self::once())->method('get')->with(Typo3QuerySettings::class)->willReturn($querySettings);
54  $fixture->expects(self::once())->method('setDefaultQuerySettings')->with($querySettings);
55  $fixture->initializeObject();
56  }
57 }
‪TYPO3\CMS\Extbase\Domain\Repository\BackendUserGroupRepository
Definition: BackendUserGroupRepository.php:27
‪TYPO3\CMS\Extbase\Object\ObjectManagerInterface
Definition: ObjectManagerInterface.php:26
‪TYPO3\CMS\Extbase\Tests\Unit\Domain\Repository\BackendUserGroupRepositoryTest\initializeObjectSetsRespectStoragePidToFalse
‪initializeObjectSetsRespectStoragePidToFalse()
Definition: BackendUserGroupRepositoryTest.php:31
‪TYPO3\CMS\Extbase\Tests\Unit\Domain\Repository
Definition: BackendUserGroupRepositoryTest.php:16
‪TYPO3\CMS\Extbase\Tests\Unit\Domain\Repository\BackendUserGroupRepositoryTest
Definition: BackendUserGroupRepositoryTest.php:27
‪TYPO3\CMS\Extbase\Persistence\Generic\Typo3QuerySettings
Definition: Typo3QuerySettings.php:29
‪TYPO3\CMS\Extbase\Tests\Unit\Domain\Repository\BackendUserGroupRepositoryTest\initializeObjectSetsDefaultQuerySettings
‪initializeObjectSetsDefaultQuerySettings()
Definition: BackendUserGroupRepositoryTest.php:44