From 8e29d1da051bbca2372801dd1c96b0a30353c5af Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Thu, 11 Dec 2014 14:35:07 -0500 Subject: [PATCH] Added test. --- .../OpenLibrarySubjectsDeferredTest.php | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 module/VuFind/tests/unit-tests/src/VuFindTest/Recommend/OpenLibrarySubjectsDeferredTest.php diff --git a/module/VuFind/tests/unit-tests/src/VuFindTest/Recommend/OpenLibrarySubjectsDeferredTest.php b/module/VuFind/tests/unit-tests/src/VuFindTest/Recommend/OpenLibrarySubjectsDeferredTest.php new file mode 100644 index 00000000000..a6df26fcaa7 --- /dev/null +++ b/module/VuFind/tests/unit-tests/src/VuFindTest/Recommend/OpenLibrarySubjectsDeferredTest.php @@ -0,0 +1,54 @@ +<?php +/** + * OpenLibrarySubjectsDeferred recommendation module 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\Recommend; + +/** + * OpenLibrarySubjectsDeferred recommendation module 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 OpenLibrarySubjectsDeferredTest extends \VuFindTest\Unit\RecommendDeferredTestCase +{ + /** + * Test standard operation + * + * @return void + */ + public function testStandardOperation() + { + $mod = $this->getRecommend('VuFind\Recommend\OpenLibrarySubjectsDeferred'); + $this->assertEquals( + 'mod=OpenLibrarySubjects¶ms=lookfor%3A%3ApublishDate&lookfor=foo', + $mod->getUrlParams() + ); + } +} \ No newline at end of file -- GitLab