From 2dc11c8ec9fbe59f7460f595129d31a9b2a9ab7c Mon Sep 17 00:00:00 2001
From: David Maus <maus@hab.de>
Date: Mon, 24 Sep 2012 15:32:48 +0200
Subject: [PATCH] Adjust top-level namespace to VuFindTest

---
 module/VuFind/tests/unit-tests/src/Auth/DatabaseTest.php      | 4 ++--
 module/VuFind/tests/unit-tests/src/Auth/ILSTest.php           | 4 ++--
 module/VuFind/tests/unit-tests/src/Auth/LDAPTest.php          | 4 ++--
 module/VuFind/tests/unit-tests/src/Auth/MultiAuthTest.php     | 4 ++--
 module/VuFind/tests/unit-tests/src/Auth/SIP2Test.php          | 4 ++--
 module/VuFind/tests/unit-tests/src/Auth/ShibbolethTest.php    | 4 ++--
 module/VuFind/tests/unit-tests/src/Code/ISBNTest.php          | 4 ++--
 module/VuFind/tests/unit-tests/src/Config/ReaderTest.php      | 4 ++--
 .../tests/unit-tests/src/Config/SearchSpecsReaderTest.php     | 4 ++--
 module/VuFind/tests/unit-tests/src/Cookie/ContainerTest.php   | 4 ++--
 module/VuFind/tests/unit-tests/src/Date/ConverterTest.php     | 4 ++--
 .../tests/unit-tests/src/Db/Table/ChangeTrackerTest.php       | 2 +-
 module/VuFind/tests/unit-tests/src/ILS/Driver/AlephTest.php   | 4 ++--
 module/VuFind/tests/unit-tests/src/ILS/Driver/AmicusTest.php  | 4 ++--
 module/VuFind/tests/unit-tests/src/ILS/Driver/DAIATest.php    | 4 ++--
 module/VuFind/tests/unit-tests/src/ILS/Driver/DemoTest.php    | 4 ++--
 .../VuFind/tests/unit-tests/src/ILS/Driver/EvergreenTest.php  | 4 ++--
 module/VuFind/tests/unit-tests/src/ILS/Driver/HorizonTest.php | 4 ++--
 .../tests/unit-tests/src/ILS/Driver/HorizonXMLAPITest.php     | 4 ++--
 .../VuFind/tests/unit-tests/src/ILS/Driver/InnovativeTest.php | 4 ++--
 module/VuFind/tests/unit-tests/src/ILS/Driver/KohaTest.php    | 4 ++--
 .../VuFind/tests/unit-tests/src/ILS/Driver/NewGenLibTest.php  | 4 ++--
 module/VuFind/tests/unit-tests/src/ILS/Driver/NoILSTest.php   | 4 ++--
 module/VuFind/tests/unit-tests/src/ILS/Driver/PICATest.php    | 4 ++--
 module/VuFind/tests/unit-tests/src/ILS/Driver/SampleTest.php  | 4 ++--
 .../VuFind/tests/unit-tests/src/ILS/Driver/SymphonyTest.php   | 4 ++--
 module/VuFind/tests/unit-tests/src/ILS/Driver/UnicornTest.php | 4 ++--
 module/VuFind/tests/unit-tests/src/ILS/Driver/VirtuaTest.php  | 4 ++--
 .../tests/unit-tests/src/ILS/Driver/VoyagerRestfulTest.php    | 4 ++--
 module/VuFind/tests/unit-tests/src/ILS/Driver/VoyagerTest.php | 4 ++--
 module/VuFind/tests/unit-tests/src/ILS/Driver/XCNCIP2Test.php | 4 ++--
 module/VuFind/tests/unit-tests/src/ILS/Driver/XCNCIPTest.php  | 4 ++--
 .../VuFind/tests/unit-tests/src/RecordDriver/SolrMarcTest.php | 2 +-
 module/VuFind/tests/unit-tests/src/Search/Base/ParamsTest.php | 4 ++--
 module/VuFind/tests/unit-tests/src/Solr/UtilsTest.php         | 4 ++--
 .../tests/unit-tests/src/Theme/Root/Helper/CitationTest.php   | 4 ++--
 .../tests/unit-tests/src/Theme/Root/Helper/ResultFeedTest.php | 2 +-
 37 files changed, 71 insertions(+), 71 deletions(-)

diff --git a/module/VuFind/tests/unit-tests/src/Auth/DatabaseTest.php b/module/VuFind/tests/unit-tests/src/Auth/DatabaseTest.php
index 00ad8638e9c..a2d50e46472 100644
--- a/module/VuFind/tests/unit-tests/src/Auth/DatabaseTest.php
+++ b/module/VuFind/tests/unit-tests/src/Auth/DatabaseTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\Auth;
+namespace VuFindTest\Auth;
 use VuFind\Auth\Database;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\Auth\Database;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class DatabaseTest extends \VuFind\Tests\DbTestCase
+class DatabaseTest extends \VuFindTest\DbTestCase
 {
     protected $auth;
 
diff --git a/module/VuFind/tests/unit-tests/src/Auth/ILSTest.php b/module/VuFind/tests/unit-tests/src/Auth/ILSTest.php
index a9fac52cd74..7ad3abee3c6 100644
--- a/module/VuFind/tests/unit-tests/src/Auth/ILSTest.php
+++ b/module/VuFind/tests/unit-tests/src/Auth/ILSTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\Auth;
+namespace VuFindTest\Auth;
 use VuFind\Auth\ILS, VuFind\Db\Table\User;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\Auth\ILS, VuFind\Db\Table\User;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class ILSTest extends \VuFind\Tests\DbTestCase
+class ILSTest extends \VuFindTest\DbTestCase
 {
     protected $auth;
     protected $driver;
diff --git a/module/VuFind/tests/unit-tests/src/Auth/LDAPTest.php b/module/VuFind/tests/unit-tests/src/Auth/LDAPTest.php
index 927304ccb95..9e99c4e0895 100644
--- a/module/VuFind/tests/unit-tests/src/Auth/LDAPTest.php
+++ b/module/VuFind/tests/unit-tests/src/Auth/LDAPTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\Auth;
+namespace VuFindTest\Auth;
 use VuFind\Auth\LDAP, Zend\Config\Config;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\Auth\LDAP, Zend\Config\Config;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class LDAPTest extends \VuFind\Tests\TestCase
+class LDAPTest extends \VuFindTest\TestCase
 {
     /**
      * Get an authentication object.
diff --git a/module/VuFind/tests/unit-tests/src/Auth/MultiAuthTest.php b/module/VuFind/tests/unit-tests/src/Auth/MultiAuthTest.php
index a161b7a738a..def847cd1ee 100644
--- a/module/VuFind/tests/unit-tests/src/Auth/MultiAuthTest.php
+++ b/module/VuFind/tests/unit-tests/src/Auth/MultiAuthTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\Auth;
+namespace VuFindTest\Auth;
 use VuFind\Auth\MultiAuth, Zend\Config\Config;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\Auth\MultiAuth, Zend\Config\Config;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class MultiAuthTest extends \VuFind\Tests\TestCase
+class MultiAuthTest extends \VuFindTest\TestCase
 {
     /**
      * Get an authentication object.
diff --git a/module/VuFind/tests/unit-tests/src/Auth/SIP2Test.php b/module/VuFind/tests/unit-tests/src/Auth/SIP2Test.php
index bdc9328dc35..3495c71ce11 100644
--- a/module/VuFind/tests/unit-tests/src/Auth/SIP2Test.php
+++ b/module/VuFind/tests/unit-tests/src/Auth/SIP2Test.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\Auth;
+namespace VuFindTest\Auth;
 use VuFind\Auth\SIP2, Zend\Config\Config;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\Auth\SIP2, Zend\Config\Config;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class SIP2Test extends \VuFind\Tests\TestCase
+class SIP2Test extends \VuFindTest\TestCase
 {
     /**
      * Get an authentication object.
diff --git a/module/VuFind/tests/unit-tests/src/Auth/ShibbolethTest.php b/module/VuFind/tests/unit-tests/src/Auth/ShibbolethTest.php
index 5af8af456bc..42f552c44fe 100644
--- a/module/VuFind/tests/unit-tests/src/Auth/ShibbolethTest.php
+++ b/module/VuFind/tests/unit-tests/src/Auth/ShibbolethTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\Auth;
+namespace VuFindTest\Auth;
 use VuFind\Auth\Shibboleth, VuFind\Db\Table\User, Zend\Config\Config;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\Auth\Shibboleth, VuFind\Db\Table\User, Zend\Config\Config;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class ShibbolethTest extends \VuFind\Tests\DbTestCase
+class ShibbolethTest extends \VuFindTest\DbTestCase
 {
     /**
      * Standard setup method.
diff --git a/module/VuFind/tests/unit-tests/src/Code/ISBNTest.php b/module/VuFind/tests/unit-tests/src/Code/ISBNTest.php
index c2a1e5ebeb8..908d518d718 100644
--- a/module/VuFind/tests/unit-tests/src/Code/ISBNTest.php
+++ b/module/VuFind/tests/unit-tests/src/Code/ISBNTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://vufind.org/wiki/unit_tests Wiki
  */
-namespace VuFind\Tests\Code;
+namespace VuFindTest\Code;
 use VuFind\Code\ISBN;
 
 /**
@@ -38,7 +38,7 @@ use VuFind\Code\ISBN;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://vufind.org/wiki/unit_tests Wiki
  */
-class ISBNTest extends \VuFind\Tests\TestCase
+class ISBNTest extends \VuFindTest\TestCase
 {
     /**
      * Test Valid ISBN-10.
diff --git a/module/VuFind/tests/unit-tests/src/Config/ReaderTest.php b/module/VuFind/tests/unit-tests/src/Config/ReaderTest.php
index f0747b6949d..28fd43e8727 100644
--- a/module/VuFind/tests/unit-tests/src/Config/ReaderTest.php
+++ b/module/VuFind/tests/unit-tests/src/Config/ReaderTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://vufind.org/wiki/unit_tests Wiki
  */
-namespace VuFind\Tests\Config;
+namespace VuFindTest\Config;
 use VuFind\Config\Reader;
 
 /**
@@ -38,7 +38,7 @@ use VuFind\Config\Reader;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://vufind.org/wiki/unit_tests Wiki
  */
-class ReaderTest extends \VuFind\Tests\TestCase
+class ReaderTest extends \VuFindTest\TestCase
 {
     /**
      * Test basic config.ini loading.
diff --git a/module/VuFind/tests/unit-tests/src/Config/SearchSpecsReaderTest.php b/module/VuFind/tests/unit-tests/src/Config/SearchSpecsReaderTest.php
index 42c2d146699..d8dd7f5cbf6 100644
--- a/module/VuFind/tests/unit-tests/src/Config/SearchSpecsReaderTest.php
+++ b/module/VuFind/tests/unit-tests/src/Config/SearchSpecsReaderTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://vufind.org/wiki/unit_tests Wiki
  */
-namespace VuFind\Tests\Config;
+namespace VuFindTest\Config;
 use VuFind\Config\SearchSpecsReader;
 
 /**
@@ -38,7 +38,7 @@ use VuFind\Config\SearchSpecsReader;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://vufind.org/wiki/unit_tests Wiki
  */
-class SearchSpecsReaderTest extends \VuFind\Tests\TestCase
+class SearchSpecsReaderTest extends \VuFindTest\TestCase
 {
     /**
      * Test loading of a YAML file.
diff --git a/module/VuFind/tests/unit-tests/src/Cookie/ContainerTest.php b/module/VuFind/tests/unit-tests/src/Cookie/ContainerTest.php
index a0e28b25091..ead9aecce35 100644
--- a/module/VuFind/tests/unit-tests/src/Cookie/ContainerTest.php
+++ b/module/VuFind/tests/unit-tests/src/Cookie/ContainerTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://vufind.org/wiki/unit_tests Wiki
  */
-namespace VuFind\Tests\Cookie;
+namespace VuFindTest\Cookie;
 use VuFind\Cookie\Container;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\Cookie\Container;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://vufind.org/wiki/unit_tests Wiki
  */
-class ContainerTest extends \VuFind\Tests\TestCase
+class ContainerTest extends \VuFindTest\TestCase
 {
     protected $ns;
 
diff --git a/module/VuFind/tests/unit-tests/src/Date/ConverterTest.php b/module/VuFind/tests/unit-tests/src/Date/ConverterTest.php
index 51c3f75f8b5..baa9c43b213 100644
--- a/module/VuFind/tests/unit-tests/src/Date/ConverterTest.php
+++ b/module/VuFind/tests/unit-tests/src/Date/ConverterTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\Date;
+namespace VuFindTest\Date;
 use VuFind\Date\Converter, VuFind\Exception\Date as DateException,
     Zend\Config\Config;
 
@@ -38,7 +38,7 @@ use VuFind\Date\Converter, VuFind\Exception\Date as DateException,
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class ConverterTest extends \VuFind\Tests\TestCase
+class ConverterTest extends \VuFindTest\TestCase
 {
     protected $savedDateFormat = null;
     protected $savedTimeFormat = null;
diff --git a/module/VuFind/tests/unit-tests/src/Db/Table/ChangeTrackerTest.php b/module/VuFind/tests/unit-tests/src/Db/Table/ChangeTrackerTest.php
index 1cb07e2d76b..b42f9d715a8 100644
--- a/module/VuFind/tests/unit-tests/src/Db/Table/ChangeTrackerTest.php
+++ b/module/VuFind/tests/unit-tests/src/Db/Table/ChangeTrackerTest.php
@@ -37,7 +37,7 @@ use VuFind\Db\Table\ChangeTracker;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://vufind.org/wiki/unit_tests Wiki
  */
-class ChangeTrackerTest extends \VuFind\Tests\DbTestCase
+class ChangeTrackerTest extends \VuFindTest\DbTestCase
 {
     /**
      * Test change tracking
diff --git a/module/VuFind/tests/unit-tests/src/ILS/Driver/AlephTest.php b/module/VuFind/tests/unit-tests/src/ILS/Driver/AlephTest.php
index b7e512f2e81..73d9336664d 100644
--- a/module/VuFind/tests/unit-tests/src/ILS/Driver/AlephTest.php
+++ b/module/VuFind/tests/unit-tests/src/ILS/Driver/AlephTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\ILS\Driver;
+namespace VuFindTest\ILS\Driver;
 use VuFind\ILS\Driver\Aleph;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\ILS\Driver\Aleph;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class AlephTest extends \VuFind\Tests\TestCase
+class AlephTest extends \VuFindTest\TestCase
 {
     protected $driver;
 
diff --git a/module/VuFind/tests/unit-tests/src/ILS/Driver/AmicusTest.php b/module/VuFind/tests/unit-tests/src/ILS/Driver/AmicusTest.php
index e009fc4bfea..18a570a9f16 100644
--- a/module/VuFind/tests/unit-tests/src/ILS/Driver/AmicusTest.php
+++ b/module/VuFind/tests/unit-tests/src/ILS/Driver/AmicusTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\ILS\Driver;
+namespace VuFindTest\ILS\Driver;
 use VuFind\ILS\Driver\Amicus;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\ILS\Driver\Amicus;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class AmicusTest extends \VuFind\Tests\TestCase
+class AmicusTest extends \VuFindTest\TestCase
 {
     protected $driver;
 
diff --git a/module/VuFind/tests/unit-tests/src/ILS/Driver/DAIATest.php b/module/VuFind/tests/unit-tests/src/ILS/Driver/DAIATest.php
index 9bb31a48365..2ea54903829 100644
--- a/module/VuFind/tests/unit-tests/src/ILS/Driver/DAIATest.php
+++ b/module/VuFind/tests/unit-tests/src/ILS/Driver/DAIATest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\ILS\Driver;
+namespace VuFindTest\ILS\Driver;
 use VuFind\ILS\Driver\DAIA;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\ILS\Driver\DAIA;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class DAIATest extends \VuFind\Tests\TestCase
+class DAIATest extends \VuFindTest\TestCase
 {
     protected $driver;
 
diff --git a/module/VuFind/tests/unit-tests/src/ILS/Driver/DemoTest.php b/module/VuFind/tests/unit-tests/src/ILS/Driver/DemoTest.php
index 40b2cee0227..ffa2e6dc435 100644
--- a/module/VuFind/tests/unit-tests/src/ILS/Driver/DemoTest.php
+++ b/module/VuFind/tests/unit-tests/src/ILS/Driver/DemoTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\ILS\Driver;
+namespace VuFindTest\ILS\Driver;
 use VuFind\ILS\Driver\Demo;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\ILS\Driver\Demo;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class DemoTest extends \VuFind\Tests\TestCase
+class DemoTest extends \VuFindTest\TestCase
 {
     protected $driver;
 
diff --git a/module/VuFind/tests/unit-tests/src/ILS/Driver/EvergreenTest.php b/module/VuFind/tests/unit-tests/src/ILS/Driver/EvergreenTest.php
index 53e3ac895d7..de288f5217f 100644
--- a/module/VuFind/tests/unit-tests/src/ILS/Driver/EvergreenTest.php
+++ b/module/VuFind/tests/unit-tests/src/ILS/Driver/EvergreenTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\ILS\Driver;
+namespace VuFindTest\ILS\Driver;
 use VuFind\ILS\Driver\Evergreen;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\ILS\Driver\Evergreen;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class EvergreenTest extends \VuFind\Tests\TestCase
+class EvergreenTest extends \VuFindTest\TestCase
 {
     protected $driver;
 
diff --git a/module/VuFind/tests/unit-tests/src/ILS/Driver/HorizonTest.php b/module/VuFind/tests/unit-tests/src/ILS/Driver/HorizonTest.php
index 6f6b15bf174..45c88dad0b4 100644
--- a/module/VuFind/tests/unit-tests/src/ILS/Driver/HorizonTest.php
+++ b/module/VuFind/tests/unit-tests/src/ILS/Driver/HorizonTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\ILS\Driver;
+namespace VuFindTest\ILS\Driver;
 use VuFind\ILS\Driver\Horizon;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\ILS\Driver\Horizon;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class HorizonTest extends \VuFind\Tests\TestCase
+class HorizonTest extends \VuFindTest\TestCase
 {
     protected $driver;
 
diff --git a/module/VuFind/tests/unit-tests/src/ILS/Driver/HorizonXMLAPITest.php b/module/VuFind/tests/unit-tests/src/ILS/Driver/HorizonXMLAPITest.php
index dc26ae84185..75d902b70af 100644
--- a/module/VuFind/tests/unit-tests/src/ILS/Driver/HorizonXMLAPITest.php
+++ b/module/VuFind/tests/unit-tests/src/ILS/Driver/HorizonXMLAPITest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\ILS\Driver;
+namespace VuFindTest\ILS\Driver;
 use VuFind\ILS\Driver\HorizonXMLAPI;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\ILS\Driver\HorizonXMLAPI;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class HorizonXMLAPITest extends \VuFind\Tests\TestCase
+class HorizonXMLAPITest extends \VuFindTest\TestCase
 {
     protected $driver;
 
diff --git a/module/VuFind/tests/unit-tests/src/ILS/Driver/InnovativeTest.php b/module/VuFind/tests/unit-tests/src/ILS/Driver/InnovativeTest.php
index 93150045585..56897fb950f 100644
--- a/module/VuFind/tests/unit-tests/src/ILS/Driver/InnovativeTest.php
+++ b/module/VuFind/tests/unit-tests/src/ILS/Driver/InnovativeTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\ILS\Driver;
+namespace VuFindTest\ILS\Driver;
 use VuFind\ILS\Driver\Innovative;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\ILS\Driver\Innovative;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class InnovativeTest extends \VuFind\Tests\TestCase
+class InnovativeTest extends \VuFindTest\TestCase
 {
     protected $driver;
 
diff --git a/module/VuFind/tests/unit-tests/src/ILS/Driver/KohaTest.php b/module/VuFind/tests/unit-tests/src/ILS/Driver/KohaTest.php
index b056ce9e255..0654309be02 100644
--- a/module/VuFind/tests/unit-tests/src/ILS/Driver/KohaTest.php
+++ b/module/VuFind/tests/unit-tests/src/ILS/Driver/KohaTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\ILS\Driver;
+namespace VuFindTest\ILS\Driver;
 use VuFind\ILS\Driver\Koha;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\ILS\Driver\Koha;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class KohaTest extends \VuFind\Tests\TestCase
+class KohaTest extends \VuFindTest\TestCase
 {
     protected $driver;
 
diff --git a/module/VuFind/tests/unit-tests/src/ILS/Driver/NewGenLibTest.php b/module/VuFind/tests/unit-tests/src/ILS/Driver/NewGenLibTest.php
index 297f2a7c54b..81ec1317687 100644
--- a/module/VuFind/tests/unit-tests/src/ILS/Driver/NewGenLibTest.php
+++ b/module/VuFind/tests/unit-tests/src/ILS/Driver/NewGenLibTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\ILS\Driver;
+namespace VuFindTest\ILS\Driver;
 use VuFind\ILS\Driver\NewGenLib;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\ILS\Driver\NewGenLib;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class NewGenLibTest extends \VuFind\Tests\TestCase
+class NewGenLibTest extends \VuFindTest\TestCase
 {
     protected $driver;
 
diff --git a/module/VuFind/tests/unit-tests/src/ILS/Driver/NoILSTest.php b/module/VuFind/tests/unit-tests/src/ILS/Driver/NoILSTest.php
index 318e252b39b..235fbdb3109 100644
--- a/module/VuFind/tests/unit-tests/src/ILS/Driver/NoILSTest.php
+++ b/module/VuFind/tests/unit-tests/src/ILS/Driver/NoILSTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\ILS\Driver;
+namespace VuFindTest\ILS\Driver;
 use VuFind\ILS\Driver\NoILS;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\ILS\Driver\NoILS;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class NoILSTest extends \VuFind\Tests\TestCase
+class NoILSTest extends \VuFindTest\TestCase
 {
     protected $driver;
 
diff --git a/module/VuFind/tests/unit-tests/src/ILS/Driver/PICATest.php b/module/VuFind/tests/unit-tests/src/ILS/Driver/PICATest.php
index 6d65c92c548..45e9bcb7ba2 100644
--- a/module/VuFind/tests/unit-tests/src/ILS/Driver/PICATest.php
+++ b/module/VuFind/tests/unit-tests/src/ILS/Driver/PICATest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\ILS\Driver;
+namespace VuFindTest\ILS\Driver;
 use VuFind\ILS\Driver\PICA;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\ILS\Driver\PICA;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class PICATest extends \VuFind\Tests\TestCase
+class PICATest extends \VuFindTest\TestCase
 {
     protected $driver;
 
diff --git a/module/VuFind/tests/unit-tests/src/ILS/Driver/SampleTest.php b/module/VuFind/tests/unit-tests/src/ILS/Driver/SampleTest.php
index e2ddde207ea..ccba98cf631 100644
--- a/module/VuFind/tests/unit-tests/src/ILS/Driver/SampleTest.php
+++ b/module/VuFind/tests/unit-tests/src/ILS/Driver/SampleTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\ILS\Driver;
+namespace VuFindTest\ILS\Driver;
 use VuFind\ILS\Driver\Sample;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\ILS\Driver\Sample;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class SampleTest extends \VuFind\Tests\TestCase
+class SampleTest extends \VuFindTest\TestCase
 {
     protected $driver;
 
diff --git a/module/VuFind/tests/unit-tests/src/ILS/Driver/SymphonyTest.php b/module/VuFind/tests/unit-tests/src/ILS/Driver/SymphonyTest.php
index bf5e7d14826..f20dbf7d035 100644
--- a/module/VuFind/tests/unit-tests/src/ILS/Driver/SymphonyTest.php
+++ b/module/VuFind/tests/unit-tests/src/ILS/Driver/SymphonyTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\ILS\Driver;
+namespace VuFindTest\ILS\Driver;
 use VuFind\ILS\Driver\Symphony;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\ILS\Driver\Symphony;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class SymphonyTest extends \VuFind\Tests\TestCase
+class SymphonyTest extends \VuFindTest\TestCase
 {
     protected $driver;
 
diff --git a/module/VuFind/tests/unit-tests/src/ILS/Driver/UnicornTest.php b/module/VuFind/tests/unit-tests/src/ILS/Driver/UnicornTest.php
index fa00efbab87..d5c6a278e17 100644
--- a/module/VuFind/tests/unit-tests/src/ILS/Driver/UnicornTest.php
+++ b/module/VuFind/tests/unit-tests/src/ILS/Driver/UnicornTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\ILS\Driver;
+namespace VuFindTest\ILS\Driver;
 use VuFind\ILS\Driver\Unicorn;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\ILS\Driver\Unicorn;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class UnicornTest extends \VuFind\Tests\TestCase
+class UnicornTest extends \VuFindTest\TestCase
 {
     protected $driver;
 
diff --git a/module/VuFind/tests/unit-tests/src/ILS/Driver/VirtuaTest.php b/module/VuFind/tests/unit-tests/src/ILS/Driver/VirtuaTest.php
index d9939456f89..2d30f41c6fe 100644
--- a/module/VuFind/tests/unit-tests/src/ILS/Driver/VirtuaTest.php
+++ b/module/VuFind/tests/unit-tests/src/ILS/Driver/VirtuaTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\ILS\Driver;
+namespace VuFindTest\ILS\Driver;
 use VuFind\ILS\Driver\Virtua;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\ILS\Driver\Virtua;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class VirtuaTest extends \VuFind\Tests\TestCase
+class VirtuaTest extends \VuFindTest\TestCase
 {
     protected $driver;
 
diff --git a/module/VuFind/tests/unit-tests/src/ILS/Driver/VoyagerRestfulTest.php b/module/VuFind/tests/unit-tests/src/ILS/Driver/VoyagerRestfulTest.php
index c7bee219008..ca9f7d089ba 100644
--- a/module/VuFind/tests/unit-tests/src/ILS/Driver/VoyagerRestfulTest.php
+++ b/module/VuFind/tests/unit-tests/src/ILS/Driver/VoyagerRestfulTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\ILS\Driver;
+namespace VuFindTest\ILS\Driver;
 use VuFind\ILS\Driver\VoyagerRestful;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\ILS\Driver\VoyagerRestful;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class VoyagerRestfulTest extends \VuFind\Tests\TestCase
+class VoyagerRestfulTest extends \VuFindTest\TestCase
 {
     protected $driver;
 
diff --git a/module/VuFind/tests/unit-tests/src/ILS/Driver/VoyagerTest.php b/module/VuFind/tests/unit-tests/src/ILS/Driver/VoyagerTest.php
index 4e78c6fb800..3d50337dc1f 100644
--- a/module/VuFind/tests/unit-tests/src/ILS/Driver/VoyagerTest.php
+++ b/module/VuFind/tests/unit-tests/src/ILS/Driver/VoyagerTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\ILS\Driver;
+namespace VuFindTest\ILS\Driver;
 use VuFind\ILS\Driver\Voyager;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\ILS\Driver\Voyager;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class VoyagerTest extends \VuFind\Tests\TestCase
+class VoyagerTest extends \VuFindTest\TestCase
 {
     protected $driver;
 
diff --git a/module/VuFind/tests/unit-tests/src/ILS/Driver/XCNCIP2Test.php b/module/VuFind/tests/unit-tests/src/ILS/Driver/XCNCIP2Test.php
index ba543fddf46..91308c70134 100644
--- a/module/VuFind/tests/unit-tests/src/ILS/Driver/XCNCIP2Test.php
+++ b/module/VuFind/tests/unit-tests/src/ILS/Driver/XCNCIP2Test.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\ILS\Driver;
+namespace VuFindTest\ILS\Driver;
 use VuFind\ILS\Driver\XCNCIP2;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\ILS\Driver\XCNCIP2;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class XCNCIP2Test extends \VuFind\Tests\TestCase
+class XCNCIP2Test extends \VuFindTest\TestCase
 {
     protected $driver;
 
diff --git a/module/VuFind/tests/unit-tests/src/ILS/Driver/XCNCIPTest.php b/module/VuFind/tests/unit-tests/src/ILS/Driver/XCNCIPTest.php
index c0cd0755f80..75a5f8aa239 100644
--- a/module/VuFind/tests/unit-tests/src/ILS/Driver/XCNCIPTest.php
+++ b/module/VuFind/tests/unit-tests/src/ILS/Driver/XCNCIPTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-namespace VuFind\Tests\ILS\Driver;
+namespace VuFindTest\ILS\Driver;
 use VuFind\ILS\Driver\XCNCIP;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\ILS\Driver\XCNCIP;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://www.vufind.org  Main Page
  */
-class XCNCIPTest extends \VuFind\Tests\TestCase
+class XCNCIPTest extends \VuFindTest\TestCase
 {
     protected $driver;
 
diff --git a/module/VuFind/tests/unit-tests/src/RecordDriver/SolrMarcTest.php b/module/VuFind/tests/unit-tests/src/RecordDriver/SolrMarcTest.php
index 52900ef337f..698ed84093f 100644
--- a/module/VuFind/tests/unit-tests/src/RecordDriver/SolrMarcTest.php
+++ b/module/VuFind/tests/unit-tests/src/RecordDriver/SolrMarcTest.php
@@ -39,7 +39,7 @@ namespace VuFind\Test\RecordDriver;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://vufind.org/wiki/unit_tests Wiki
  */
-class SolrMarcTest extends \VuFind\Tests\TestCase
+class SolrMarcTest extends \VuFindTest\TestCase
 {
     /**
      * Test a record that used to be known to cause problems because of the way
diff --git a/module/VuFind/tests/unit-tests/src/Search/Base/ParamsTest.php b/module/VuFind/tests/unit-tests/src/Search/Base/ParamsTest.php
index 0bebb47638b..8a32a8d765b 100644
--- a/module/VuFind/tests/unit-tests/src/Search/Base/ParamsTest.php
+++ b/module/VuFind/tests/unit-tests/src/Search/Base/ParamsTest.php
@@ -26,7 +26,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://vufind.org/wiki/unit_tests Wiki
  */
-namespace VuFind\Tests\Search\Base;
+namespace VuFindTest\Search\Base;
 
 /**
  * Base Search Object Parameters Test
@@ -38,7 +38,7 @@ namespace VuFind\Tests\Search\Base;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://vufind.org/wiki/unit_tests Wiki
  */
-class ParamsTest extends \VuFind\Tests\TestCase
+class ParamsTest extends \VuFindTest\TestCase
 {
     /**
      * Test a record that used to be known to cause problems because of the way
diff --git a/module/VuFind/tests/unit-tests/src/Solr/UtilsTest.php b/module/VuFind/tests/unit-tests/src/Solr/UtilsTest.php
index 2dc0621aef9..5ec2ea0583e 100644
--- a/module/VuFind/tests/unit-tests/src/Solr/UtilsTest.php
+++ b/module/VuFind/tests/unit-tests/src/Solr/UtilsTest.php
@@ -25,7 +25,7 @@
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://vufind.org/wiki/unit_tests Wiki
  */
-namespace VuFind\Tests\Solr;
+namespace VuFindTest\Solr;
 use VuFind\Solr\Utils;
 
 /**
@@ -37,7 +37,7 @@ use VuFind\Solr\Utils;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://vufind.org/wiki/unit_tests Wiki
  */
-class UtilsTest extends \VuFind\Tests\TestCase
+class UtilsTest extends \VuFindTest\TestCase
 {
     /**
      * Test capitalizeBooleans functionality.
diff --git a/module/VuFind/tests/unit-tests/src/Theme/Root/Helper/CitationTest.php b/module/VuFind/tests/unit-tests/src/Theme/Root/Helper/CitationTest.php
index 61d49fe0774..60dd4ae2e1f 100644
--- a/module/VuFind/tests/unit-tests/src/Theme/Root/Helper/CitationTest.php
+++ b/module/VuFind/tests/unit-tests/src/Theme/Root/Helper/CitationTest.php
@@ -37,7 +37,7 @@ use VuFind\Theme\Root\Helper\Citation;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://vufind.org/wiki/unit_tests Wiki
  */
-class CitationTest extends \VuFind\Tests\ViewHelperTestCase
+class CitationTest extends \VuFindTest\ViewHelperTestCase
 {
     /** Sample citations -- each element of this array contains three elements --
      * the raw input data and the expected apa/mla output citations.
@@ -285,7 +285,7 @@ class CitationTest extends \VuFind\Tests\ViewHelperTestCase
     {
         $citation = new Citation();
         $citation->setView($this->getPhpRenderer());
-        $driver = new \VuFind\RecordDriver\TestHarness();
+        $driver = new \VuFindTest\RecordDriver\TestHarness();
         foreach ($this->citations as $current) {
             $driver->setRawData($current['raw']);
             $cb = $citation->__invoke($driver);
diff --git a/module/VuFind/tests/unit-tests/src/Theme/Root/Helper/ResultFeedTest.php b/module/VuFind/tests/unit-tests/src/Theme/Root/Helper/ResultFeedTest.php
index 22c6f7a021e..e355f7011ef 100644
--- a/module/VuFind/tests/unit-tests/src/Theme/Root/Helper/ResultFeedTest.php
+++ b/module/VuFind/tests/unit-tests/src/Theme/Root/Helper/ResultFeedTest.php
@@ -37,7 +37,7 @@ use VuFind\Theme\Root\Helper\ResultFeed;
  * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
  * @link     http://vufind.org/wiki/unit_tests Wiki
  */
-class ResultFeedTest extends \VuFind\Tests\ViewHelperTestCase
+class ResultFeedTest extends \VuFindTest\ViewHelperTestCase
 {
     /**
      * Get plugins to register to support view helper being tested
-- 
GitLab