Yaffs site version 1.1
[yaffs-website] / vendor / gabordemooij / redbean / testing / RedUNIT / CUBRID.php
1 <?php
2
3 namespace RedUNIT;
4
5 /**
6  * CUBRID
7  *
8  * The CUBRID class is the parent class for all CUBRID specific tests.
9  *
10  * @file    RedUNIT/CUBRID.php
11  * @desc    Base class for all test classes that aim to test the CUBRID database support.
12  * @author  Gabor de Mooij and the RedBeanPHP Community
13  * @license New BSD/GPLv2
14  *
15  * (c) G.J.G.T. (Gabor) de Mooij and the RedBeanPHP Community.
16  * This source file is subject to the New BSD/GPLv2 License that is bundled
17  * with this source code in the file license.txt.
18  */
19 class CUBRID extends RedUNIT
20 {
21         /**
22          * Returns a list of drivers for which this driver supports
23          * 'test rounds'. This class only supports the CUBRID driver.
24          *
25          * @see RedUNIT::getTargetDrivers() for details.
26          *
27          * @return array
28          */
29         public function getTargetDrivers()
30         {
31                 return array( 'CUBRID' );
32         }
33 }