'name' => '/bar'
);
$node->__construct($structure, NULL);
- $this->assertNull($node->getParent());
+ $this->assertNull($node->_call('getParent'));
}
/**
),
);
$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);
'targetPermission' => $targetPermission,
);
$node->__construct($structure, NULL);
- $this->assertSame($targetPermission, $node->getTargetPermission());
+ $this->assertSame($targetPermission, $node->_call('getTargetPermission'));
}
/**
$this->assertSame($path, $node->getAbsolutePath());
}
}
+?>
\ No newline at end of file