aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/template
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/template')
-rw-r--r--tests/lib/template/resourcelocator.php25
1 files changed, 18 insertions, 7 deletions
diff --git a/tests/lib/template/resourcelocator.php b/tests/lib/template/resourcelocator.php
index b0851621fd2..bbcd6876ac8 100644
--- a/tests/lib/template/resourcelocator.php
+++ b/tests/lib/template/resourcelocator.php
@@ -6,8 +6,12 @@
* See the COPYING-README file.
*/
-class Test_ResourceLocator extends \Test\TestCase {
- /** @var PHPUnit_Framework_MockObject_MockObject */
+namespace Test\Template;
+
+use OC\Template\ResourceNotFoundException;
+
+class ResourceLocator extends \Test\TestCase {
+ /** @var \PHPUnit_Framework_MockObject_MockObject */
protected $logger;
protected function setUp() {
@@ -17,10 +21,14 @@ class Test_ResourceLocator extends \Test\TestCase {
/**
* @param string $theme
+ * @param array $core_map
+ * @param array $party_map
+ * @param array $appsRoots
+ * @return \PHPUnit_Framework_MockObject_MockObject
*/
- public function getResourceLocator( $theme, $core_map, $party_map, $appsroots ) {
+ public function getResourceLocator($theme, $core_map, $party_map, $appsRoots) {
return $this->getMockForAbstractClass('OC\Template\ResourceLocator',
- array($this->logger, $theme, $core_map, $party_map, $appsroots ),
+ array($this->logger, $theme, $core_map, $party_map, $appsRoots ),
'', true, true, true, array());
}
@@ -44,6 +52,7 @@ class Test_ResourceLocator extends \Test\TestCase {
$locator->expects($this->once())
->method('doFindTheme')
->with('foo');
+ /** @var \OC\Template\ResourceLocator $locator */
$locator->find(array('foo'));
}
@@ -53,20 +62,22 @@ class Test_ResourceLocator extends \Test\TestCase {
$locator->expects($this->once())
->method('doFind')
->with('foo')
- ->will($this->throwException(new \OC\Template\ResourceNotFoundException('foo', 'map')));
+ ->will($this->throwException(new ResourceNotFoundException('foo', 'map')));
$locator->expects($this->once())
->method('doFindTheme')
->with('foo')
- ->will($this->throwException(new \OC\Template\ResourceNotFoundException('foo', 'map')));
+ ->will($this->throwException(new ResourceNotFoundException('foo', 'map')));
$this->logger->expects($this->exactly(2))
->method('error');
+ /** @var \OC\Template\ResourceLocator $locator */
$locator->find(array('foo'));
}
public function testAppendIfExist() {
$locator = $this->getResourceLocator('theme',
array(__DIR__=>'map'), array('3rd'=>'party'), array('foo'=>'bar'));
- $method = new ReflectionMethod($locator, 'appendIfExist');
+ /** @var \OC\Template\ResourceLocator $locator */
+ $method = new \ReflectionMethod($locator, 'appendIfExist');
$method->setAccessible(true);
$method->invoke($locator, __DIR__, basename(__FILE__), 'webroot');