From a27b6ded13fea1d7a46f2c9eb21636962410485c Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Wed, 30 Jan 2013 15:37:37 -0500 Subject: [PATCH] Began test suite for SimpleXML utilities. --- .../tests/unit-tests/src/SimpleXMLTest.php | 56 +++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 module/VuFind/tests/unit-tests/src/SimpleXMLTest.php diff --git a/module/VuFind/tests/unit-tests/src/SimpleXMLTest.php b/module/VuFind/tests/unit-tests/src/SimpleXMLTest.php new file mode 100644 index 00000000000..c1fa58099aa --- /dev/null +++ b/module/VuFind/tests/unit-tests/src/SimpleXMLTest.php @@ -0,0 +1,56 @@ +<?php +/** + * SimpleXML 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; + +/** + * SimpleXML 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 SimpleXMLTest extends \PHPUnit_Framework_TestCase +{ + /** + * Test attaching one item to another. + * + * @return void + */ + public function testAppendElement() + { + $parent = simplexml_load_string('<top><children></children></top>'); + $child = simplexml_load_string('<child attr="true" />'); + $expected = simplexml_load_string( + '<top><children><child attr="true" /></children></top>' + ); + \VuFind\SimpleXML::appendElement($parent->children, $child); + $this->assertEquals($expected->asXML(), $parent->asXML()); + } +} \ No newline at end of file -- GitLab