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