Security update for Core, with self-updated composer
[yaffs-website] / vendor / gabordemooij / redbean / testing / RedUNIT / Base.php
diff --git a/vendor/gabordemooij/redbean/testing/RedUNIT/Base.php b/vendor/gabordemooij/redbean/testing/RedUNIT/Base.php
deleted file mode 100644 (file)
index 5750b00..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-<?php
-
-namespace RedUNIT;
-
-/**
- * Base
- *
- * This is the base class for all multi-driver Unit Tests.
- * By default base class derived tests will offer 'test rounds' for
- * all well known RedBeanPHP drivers: mysql (MySQL/MariaDB), pgsql (PostgreSQL),
- * sqlite (SQLite3) and CUBRID (CUBRID).
- *
- * @file    RedUNIT/Base.php
- * @desc    Base class for all drivers that support all database systems.
- * @author  Gabor de Mooij and the RedBeanPHP Community
- * @license New BSD/GPLv2
- *
- * (c) G.J.G.T. (Gabor) de Mooij and the RedBeanPHP Community.
- * This source file is subject to the New BSD/GPLv2 License that is bundled
- * with this source code in the file license.txt.
- */
-class Base extends RedUNIT
-{
-
-       /**
-        * List of DB drivers.
-        * Contains the list of database drivers as returned by getTargetDrivers().
-        *
-        * @var array
-        */
-       protected static $driverList = array( 'mysql', 'pgsql', 'sqlite', 'CUBRID' );
-
-       /**
-        * Adds a driver to the list.
-        *
-        * @param string $driverID driver identifier.
-        */
-       public static function addToDriverList( $driverID )
-       {
-               self::$driverList[] = $driverID;
-       }
-
-       /**
-        * Returns a list of drivers for which this driver supports
-        * 'test rounds'. This class only supports all base drivers.
-        *
-        * @see RedUNIT::getTargetDrivers() for details.
-        *
-        * @return array
-        */
-       public function getTargetDrivers()
-       {
-               return self::$driverList;
-       }
-}