From b9756aca4bdbf2f6e0c9a0e1a7ef8e714c9843ee Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Tue, 29 Jan 2013 13:38:02 -0500 Subject: [PATCH] Added unit test for \VuFind\View\Helper\Root\Cart. --- .../src/View/Helper/Root/CartTest.php | 59 +++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 module/VuFind/tests/unit-tests/src/View/Helper/Root/CartTest.php diff --git a/module/VuFind/tests/unit-tests/src/View/Helper/Root/CartTest.php b/module/VuFind/tests/unit-tests/src/View/Helper/Root/CartTest.php new file mode 100644 index 00000000000..bbf0e7faae4 --- /dev/null +++ b/module/VuFind/tests/unit-tests/src/View/Helper/Root/CartTest.php @@ -0,0 +1,59 @@ +<?php +/** + * Cart view helper 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 VuFind\Test\View\Helper\Root; + +/** + * Cart view helper 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 CartTest extends \PHPUnit_Framework_TestCase +{ + /** + * Test the helper + * + * @return void + */ + public function testCart() + { + // Create a mock cart object: + $cart = $this->getMock( + 'VuFind\Cart', null, array($this->getMock('VuFind\Record\Loader')) + ); + + // Create a helper object: + $helper = new \VuFind\View\Helper\Root\Cart($cart); + + // Test that __invoke returns the object that was passed to the constructor: + $this->assertEquals($cart, $helper()); + } +} \ No newline at end of file -- GitLab