~ubuntu-branches/debian/sid/php-horde-turba/sid

« back to all changes in this revision

Viewing changes to turba-4.1.0/test/Turba/Unit/Turba/Sql/Pdo/SqliteTest.php

  • Committer: Package Import Robot
  • Author(s): Mathieu Parent
  • Date: 2013-08-11 13:16:25 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20130811131625-z91stjvq51jr9onv
Tags: 4.1.1-1
New upstream version 4.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
/**
3
 
 * Test the core Turba driver with a sqlite DB.
4
 
 *
5
 
 * PHP version 5
6
 
 *
7
 
 * @category   Horde
8
 
 * @package    Turba
9
 
 * @subpackage UnitTests
10
 
 * @author     Gunnar Wrobel <wrobel@pardus.de>
11
 
 * @link       http://www.horde.org/apps/turba
12
 
 * @license    http://www.horde.org/licenses/apache Apache-like
13
 
 */
14
 
 
15
 
/**
16
 
 * Prepare the test setup.
17
 
 */
18
 
require_once __DIR__ . '/../Base.php';
19
 
 
20
 
/**
21
 
 * Test the core Turba driver with a sqlite DB.
22
 
 *
23
 
 * Copyright 2011-2013 Horde LLC (http://www.horde.org/)
24
 
 *
25
 
 * See the enclosed file LICENSE for license information (ASL). If you
26
 
 * did not receive this file, see http://www.horde.org/licenses/apache.
27
 
 *
28
 
 * @category   Horde
29
 
 * @package    Turba
30
 
 * @subpackage UnitTests
31
 
 * @author     Gunnar Wrobel <wrobel@pardus.de>
32
 
 * @link       http://www.horde.org/apps/turba
33
 
 * @license    http://www.horde.org/licenses/apache Apache-like
34
 
 */
35
 
class Turba_Unit_Turba_Sql_Pdo_SqliteTest extends Turba_Unit_Turba_Sql_Base
36
 
{
37
 
    protected $backupGlobals = false;
38
 
 
39
 
    public static function setUpBeforeClass()
40
 
    {
41
 
        self::$setup = new Horde_Test_Setup();
42
 
        self::createSqlPdoSqlite(self::$setup);
43
 
        parent::setUpBeforeClass();
44
 
    }
45
 
}
 
 
b'\\ No newline at end of file'