X-Git-Url: http://git.typo3.org/Packages/TYPO3.CMS.git/blobdiff_plain/7d11883f1f64b92de8ecebabc3b76ffe49423dfc..38ace2181ec06dd8885324e070be24cf37a1ea46:/typo3/sysext/install/Tests/Unit/FolderStructure/RootNodeTest.php diff --git a/typo3/sysext/install/Tests/Unit/FolderStructure/RootNodeTest.php b/typo3/sysext/install/Tests/Unit/FolderStructure/RootNodeTest.php index b12da46174a1..1a866d28ec48 100644 --- a/typo3/sysext/install/Tests/Unit/FolderStructure/RootNodeTest.php +++ b/typo3/sysext/install/Tests/Unit/FolderStructure/RootNodeTest.php @@ -123,7 +123,7 @@ class RootNodeTest extends \TYPO3\CMS\Core\Tests\UnitTestCase { 'name' => '/bar' ); $node->__construct($structure, NULL); - $this->assertNull($node->getParent()); + $this->assertNull($node->_call('getParent')); } /** @@ -147,7 +147,7 @@ class RootNodeTest extends \TYPO3\CMS\Core\Tests\UnitTestCase { ), ); $node->__construct($structure, NULL); - $children = $node->getChildren(); + $children = $node->_call('getChildren'); /** @var $child \TYPO3\CMS\install\FolderStructure\NodeInterface */ $child = $children[0]; $this->assertInstanceOf('TYPO3\\CMS\\install\\FolderStructure\\DirectoryNode', $child); @@ -170,7 +170,7 @@ class RootNodeTest extends \TYPO3\CMS\Core\Tests\UnitTestCase { 'targetPermission' => $targetPermission, ); $node->__construct($structure, NULL); - $this->assertSame($targetPermission, $node->getTargetPermission()); + $this->assertSame($targetPermission, $node->_call('getTargetPermission')); } /** @@ -262,3 +262,4 @@ class RootNodeTest extends \TYPO3\CMS\Core\Tests\UnitTestCase { $this->assertSame($path, $node->getAbsolutePath()); } } +?> \ No newline at end of file