TYPO3 CMS  TYPO3_6-2
BackendLayoutTest.php
Go to the documentation of this file.
1 <?php
3 
23 
29  $identifier = $this->getUniqueId('identifier__');
30  $title = $this->getUniqueId('title');
31  $configuration = $this->getUniqueId('configuration');
32  new \TYPO3\CMS\Backend\View\BackendLayout\BackendLayout($identifier, $title, $configuration);
33  }
34 
38  public function objectIsCreated() {
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);
43 
44  $this->assertEquals($identifier, $backendLayout->getIdentifier());
45  $this->assertEquals($title, $backendLayout->getTitle());
46  $this->assertEquals($configuration, $backendLayout->getConfiguration());
47  }
48 
49 }