Yaffs site version 1.1
[yaffs-website] / vendor / gabordemooij / redbean / testing / RedUNIT / Sqlite.php
1 <?php
2
3 namespace RedUNIT;
4
5 /**
6  * Sqlite
7  *
8  * The Sqlite class is the parent class of all SQLite3 specific test
9  * classes.
10  *
11  * @file    RedUNIT/Sqlite.php
12  * @desc    Base class for all SQLite 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 Sqlite extends RedUNIT
21 {
22         /**
23          * Returns a list of drivers for which this driver supports
24          * 'test rounds'. This class only supports the SQLite3 driver.
25          *
26          * @see RedUNIT::getTargetDrivers() for details.
27          *
28          * @return array
29          */
30         public function getTargetDrivers()
31         {
32                 return array( 'sqlite' );
33         }
34 }