2 namespace TYPO3\CMS\Backend\Tests\Unit\View\BackendLayout;
28 $identifier = $this->getUniqueId(
'identifier__');
29 $title = $this->getUniqueId(
'title');
30 $configuration = $this->getUniqueId(
'configuration');
31 new \TYPO3\CMS\Backend\View\BackendLayout\BackendLayout($identifier, $title, $configuration);
39 $identifier = $this->getUniqueId(
'identifier');
40 $title = $this->getUniqueId(
'title');
41 $configuration = $this->getUniqueId(
'configuration');
42 $backendLayout = new \TYPO3\CMS\Backend\View\BackendLayout\BackendLayout($identifier, $title, $configuration);
44 $this->assertEquals($identifier, $backendLayout->getIdentifier());
45 $this->assertEquals($title, $backendLayout->getTitle());
46 $this->assertEquals($configuration, $backendLayout->getConfiguration());