diff --git a/module/VuFindSearch/tests/unit-tests/src/VuFindTest/Backend/EDS/Response/RecordCollectionFactoryTest.php b/module/VuFindSearch/tests/unit-tests/src/VuFindTest/Backend/EDS/Response/RecordCollectionFactoryTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..c682712b104ccf35c41630474b8ecbc3c2068e81
--- /dev/null
+++ b/module/VuFindSearch/tests/unit-tests/src/VuFindTest/Backend/EDS/Response/RecordCollectionFactoryTest.php
@@ -0,0 +1,70 @@
+<?php
+
+/**
+ * Unit tests for EDS record collection factory
+ *
+ * PHP version 5
+ *
+ * Copyright (C) Villanova University 2013.
+ *
+ * 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  Search
+ * @author   Demian Katz <demian.katz@villanova.edu>
+ * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
+ * @link     http://vufind.org
+ */
+
+namespace VuFindTest\Backend\EDS\Response;
+
+use VuFindSearch\Backend\EDS\Response\RecordCollectionFactory;
+use PHPUnit_Framework_TestCase;
+
+/**
+ * Unit tests for EDS record collection factory
+ *
+ * @category VuFind2
+ * @package  Search
+ * @author   Demian Katz <demian.katz@villanova.edu>
+ * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
+ * @link     http://vufind.org
+ */
+class RecordCollectionFactoryTest extends PHPUnit_Framework_TestCase
+{
+    /**
+     * Test constructor exceptions.
+     *
+     * @expectedException VuFindSearch\Exception\InvalidArgumentException
+     * @expectedExceptionMessage Record factory must be callable.
+     * @return void
+     */
+    public function testConstructorRequiresFactoryFunction()
+    {
+        $factory = new RecordCollectionFactory(null);
+    }
+
+    /**
+     * Test constructor exceptions.
+     *
+     * @expectedException VuFindSearch\Exception\InvalidArgumentException
+     * @expectedExceptionMessage Unexpected type of value: Expected array, got string
+     * @return void
+     */
+    public function testFactoryRequiresArray()
+    {
+        $factory = new RecordCollectionFactory(function () {});
+        $factory->factory('bad');
+    }
+}
\ No newline at end of file