From 533cfb75a079ab9f12420a46185d171f2d3d0777 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Thu, 3 Jul 2014 12:16:54 -0400 Subject: [PATCH] Added test. --- .../src/VuFindTest/Config/SearchSpecsReaderTest.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/module/VuFind/tests/unit-tests/src/VuFindTest/Config/SearchSpecsReaderTest.php b/module/VuFind/tests/unit-tests/src/VuFindTest/Config/SearchSpecsReaderTest.php index ce280f9f493..86a0aee1568 100644 --- a/module/VuFind/tests/unit-tests/src/VuFindTest/Config/SearchSpecsReaderTest.php +++ b/module/VuFind/tests/unit-tests/src/VuFindTest/Config/SearchSpecsReaderTest.php @@ -56,4 +56,16 @@ class SearchSpecsReaderTest extends \VuFindTest\Unit\TestCase && !empty($specs['Author']['DismaxFields']) ); } + + /** + * Test loading of a non-existent YAML file. + * + * @return void + */ + public function testMissingFileRead() + { + $reader = $this->getServiceManager()->get('VuFind\SearchSpecsReader'); + $specs = $reader->get('notreallyasearchspecs.yaml'); + $this->assertEquals(array(), $specs); + } } \ No newline at end of file -- GitLab