2 /***************************************************************
5 * (c) 2012 Markus Günther <mail@markus-guenther.de>
8 * This script is part of the TYPO3 project. The TYPO3 project is
9 * free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * The GNU General Public License can be found at
15 * http://www.gnu.org/copyleft/gpl.html.
17 * This script is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * This copyright notice MUST APPEAR in all copies of the script!
23 ***************************************************************/
26 * Testcase for Tx_Extbase_Domain_Repository_BackendUserRepository.
28 * @author Markus Günther <mail@markus-guenther.de>
31 * @subpackage Domain\Repository
34 class Tx_Extbase_Tests_Unit_Domain_Repository_BackendUserGroupRepositoryTest
extends Tx_Extbase_Tests_Unit_BaseTestCase
{
39 public function initializeObjectSetsRespectStoragePidToFalse() {
40 $objectManager = $this->getMock('Tx_Extbase_Object_ObjectManagerInterface');
41 $fixture = new Tx_Extbase_Domain_Repository_BackendUserGroupRepository($objectManager);
43 $querySettings = $this->getMock('Tx_Extbase_Persistence_Typo3QuerySettings');
44 $querySettings->expects($this->once())->method('setRespectStoragePage')->with(FALSE);
45 $objectManager->expects($this->once())->method('create')
46 ->with('Tx_Extbase_Persistence_Typo3QuerySettings')->will($this->returnValue($querySettings));
48 $fixture->initializeObject();
54 public function initializeObjectSetsDefaultQuerySettings() {
55 $objectManager = $this->getMock('Tx_Extbase_Object_ObjectManagerInterface');
56 /** @var $fixture Tx_Extbase_Domain_Repository_BackendUserGroupRepository */
57 $fixture = $this->getMock(
58 'Tx_Extbase_Domain_Repository_BackendUserGroupRepository',
59 array('setDefaultQuerySettings'), array($objectManager)
62 $querySettings = $this->getMock('Tx_Extbase_Persistence_Typo3QuerySettings');
63 $objectManager->expects($this->once())->method('create')
64 ->with('Tx_Extbase_Persistence_Typo3QuerySettings')->will($this->returnValue($querySettings));
66 $fixture->expects($this->once())->method('setDefaultQuerySettings')->with($querySettings);
68 $fixture->initializeObject();