‪TYPO3CMS  11.5
LogEntryRepositoryTest.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
19 
23 use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
24 
28 class ‪LogEntryRepositoryTest extends UnitTestCase
29 {
34  {
35  $querySettings = $this->getMockBuilder(QuerySettingsInterface::class)->getMock();
36  $querySettings->expects(self::atLeastOnce())->method('setRespectStoragePage')->with(false)->willReturn($querySettings);
37  $subject = $this->getMockBuilder(LogEntryRepository::class)
38  ->onlyMethods(['setDefaultQuerySettings'])
39  ->addMethods(['getBackendUsers'])
40  ->setConstructorArgs([$this->getMockBuilder(ObjectManagerInterface::class)->getMock()])
41  ->getMock();
42  $subject->injectQuerySettings($querySettings);
43  $subject->expects(self::once())->method('setDefaultQuerySettings')->with($querySettings);
44  $subject->initializeObject();
45  }
46 }
‪TYPO3\CMS\Belog\Domain\Repository\LogEntryRepository
Definition: LogEntryRepository.php:41
‪TYPO3\CMS\Belog\Tests\Unit\Domain\Repository\LogEntryRepositoryTest
Definition: LogEntryRepositoryTest.php:29
‪TYPO3\CMS\Belog\Tests\Unit\Domain\Repository
Definition: LogEntryRepositoryTest.php:18
‪TYPO3\CMS\Extbase\Object\ObjectManagerInterface
Definition: ObjectManagerInterface.php:29
‪TYPO3\CMS\Extbase\Persistence\Generic\QuerySettingsInterface
Definition: QuerySettingsInterface.php:22
‪TYPO3\CMS\Belog\Tests\Unit\Domain\Repository\LogEntryRepositoryTest\initializeObjectSetsRespectStoragePidToFalse
‪initializeObjectSetsRespectStoragePidToFalse()
Definition: LogEntryRepositoryTest.php:33