Skip to content
This repository has been archived by the owner on Dec 4, 2018. It is now read-only.

Commit

Permalink
[TASK] Add a missing unit test assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
NamelessCoder committed Feb 6, 2015
1 parent 0cd6448 commit 2fe1e8f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Tests/Unit/Service/ConfigurationServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ public function testGetContentConfiguration() {
$service->injectConfigurationManager(GeneralUtility::makeInstance('TYPO3\\CMS\\Extbase\\Object\\ObjectManager')
->get('TYPO3\\CMS\\Extbase\\Configuration\\ConfigurationManagerInterface'));
$result = $service->getContentConfiguration();
$this->assertEquals(array(
'FluidTYPO3.Fluidcontent' => array(
'templateRootPath' => 'EXT:fluidcontent/Resources/Private/Templates',
'partialRootPath' => 'EXT:fluidcontent/Resources/Private/Partials',
'layoutRootPath' => 'EXT:fluidcontent/Resources/Private/Layouts',
)
), $result);
}

public function testWriteCachedConfigurationIfMissing() {
Expand Down Expand Up @@ -221,11 +228,4 @@ public function testConfigurationManagerOverrides() {
$this->callInaccessibleMethod($instance, 'restorePageUidForConfigurationManager');
}

/**
* @return void
*/
public function testGetPathConfigurationsFromRootTypoScriptTemplates() {

}

}

0 comments on commit 2fe1e8f

Please sign in to comment.