From 9505256724d3129749ffd2c5fc08ab7c215d2b9c Mon Sep 17 00:00:00 2001
From: Chris Hallberg <crhallberg@gmail.com>
Date: Mon, 8 Sep 2014 11:51:16 -0400
Subject: [PATCH] Starting VuDL tests.

---
 module/VuDL/src/VuDL/Connection/Manager.php | 16 ++++++++--------
 module/VuFind/tests/bootstrap.php           |  1 +
 2 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/module/VuDL/src/VuDL/Connection/Manager.php b/module/VuDL/src/VuDL/Connection/Manager.php
index a800c4a135f..2a0266a5e5a 100644
--- a/module/VuDL/src/VuDL/Connection/Manager.php
+++ b/module/VuDL/src/VuDL/Connection/Manager.php
@@ -44,20 +44,20 @@ class Manager
      * Array of classes to try in order
      */
     protected $priority;
-    
+
     /**
      * Cache of class objects
      */
     protected $connections;
-    
+
     /**
      * Used to load class objects
      */
     protected $serviceLocator;
-    
+
     /**
      * Constructor
-     * 
+     *
      * @param array          $priority Order we want to try connectors in
      * @param ServiceLocator $sm       Object to load everything from
      */
@@ -67,12 +67,12 @@ class Manager
         $this->connections = array();
         $this->serviceLocator = $sm;
     }
-    
+
     /**
      * Get a class object from a classname, save in cache
-     * 
+     *
      * @param string $className Class we want to load
-     * 
+     *
      * @return object
      */
     protected function get($className)
@@ -83,7 +83,7 @@ class Manager
         }
         return $this->connections[$className];
     }
-    
+
     /**
      * Try to call a function in each successive class
      * according to priority
diff --git a/module/VuFind/tests/bootstrap.php b/module/VuFind/tests/bootstrap.php
index 9f779729da5..ba19b8540ac 100644
--- a/module/VuFind/tests/bootstrap.php
+++ b/module/VuFind/tests/bootstrap.php
@@ -37,6 +37,7 @@ if (file_exists('vendor/autoload.php')) {
     $loader->add('VuFindTest', __DIR__ . '/unit-tests/src');
     $loader->add('VuFindTest', __DIR__ . '/../src');
     $loader->add('VuFind', __DIR__ . '/../src');
+    $loader->add('VuDL', __DIR__ . '/../../VuDL/src');
     $loader->add('VuFindConsole', __DIR__ . '/../../VuFindConsole/src');
     $loader->add('VuFindDevTools', __DIR__ . '/../../VuFindDevTools/src');
     $loader->add('VuFindHttp', __DIR__ . '/../../VuFindHttp/src');
-- 
GitLab