We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9e882c commit 20556b0Copy full SHA for 20556b0
1 file changed
Tests/Unit/Eel/ElasticSearchQueryBuilderTest.php
@@ -27,6 +27,7 @@ public function setUp() {
27
$node = $this->getMock('TYPO3\TYPO3CR\Domain\Model\NodeInterface');
28
$node->expects($this->any())->method('getPath')->will($this->returnValue('/foo/bar'));
29
$mockContext = $this->getMockBuilder('TYPO3\TYPO3CR\Domain\Service\Context')->disableOriginalConstructor()->getMock();
30
+ $mockContext->expects($this->any())->method('getDimensions')->will($this->returnValue(array()));
31
$node->expects($this->any())->method('getContext')->will($this->returnValue($mockContext));
32
33
$mockWorkspace = $this->getMockBuilder('TYPO3\TYPO3CR\Domain\Model\Workspace')->disableOriginalConstructor()->getMock();
0 commit comments