Skip to content
Snippets Groups Projects
Commit 284dd4c8 authored by Demian Katz's avatar Demian Katz
Browse files

Set up test suite for VuFindTheme module.

parent 08c93116
No related merge requests found
......@@ -39,6 +39,7 @@ if (file_exists('vendor/autoload.php')) {
$loader->add('VuFind', __DIR__ . '/../src');
$loader->add('VuFindHttp', __DIR__ . '/../../VuFindHttp/src');
$loader->add('VuFindSearch', __DIR__ . '/../../VuFindSearch/src');
$loader->add('VuFindTheme', __DIR__ . '/../../VuFindTheme/src');
$loader->register();
}
......
......@@ -6,6 +6,9 @@
<testsuite name="VuFindSearch">
<directory>../../VuFindSearch/tests/unit-tests/src</directory>
</testsuite>
<testsuite name="VuFindTheme">
<directory>../../VuFindTheme/tests/unit-tests/src</directory>
</testsuite>
<testsuite name="VuFindUnit">
<directory>unit-tests/src</directory>
</testsuite>
......
<?php
/**
* Search subsystem PHPUnit bootstrap.
*
* @author David Maus <maus@hab.de>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @copyright Copyright (C) Villanova University 2011
*/
require_once('Zend/Loader/AutoloaderFactory.php');
\Zend\Loader\AutoloaderFactory::factory(
array(
'Zend\Loader\StandardAutoloader' => array(
'namespaces' => array(
'VuFindTheme' => realpath(__DIR__ . '/../../src/VuFindTheme'),
'VuFindTest' => realpath(__DIR__ . '/src/VuFindTest'),
),
'autoregister_zf' => true
)
)
);
<?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="bootstrap.php"
strict="true">
<testsuites>
<testsuite name="VuFindTheme">
<directory>src</directory>
</testsuite>
</testsuites>
<php>
<includePath>../../../../vendor/zendframework/zendframework/library</includePath>
</php>
</phpunit>
<?php
/**
* InjectTemplateListener Test Class
*
* PHP version 5
*
* Copyright (C) Villanova University 2010.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* @category VuFind2
* @package Tests
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://vufind.org/wiki/vufind2:unit_tests Wiki
*/
namespace VuFindTest;
use VuFindTheme\InjectTemplateListener;
/**
* InjectTemplateListener Test Class
*
* @category VuFind2
* @package Tests
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://vufind.org/wiki/vufind2:unit_tests Wiki
*/
class ThemeInjectTemplateListenerTest extends Unit\TestCase
{
/**
* Test namespace stripping.
*
* @return void
*/
public function testNamespaceStripping()
{
$l = new InjectTemplateListener();
$this->assertEquals(
'', $this->callMethod($l, 'deriveModuleNamespace', array('dummy'))
);
}
/**
* Test camelcase handling.
*
* @return void
*/
public function testCamelCaseToLowerCase()
{
$l = new InjectTemplateListener();
$this->assertEquals(
'testcase', $this->callMethod($l, 'inflectName', array('testCase'))
);
}
}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment