1<?php
2/**
3 * Test the Kolab driver.
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 */
18require_once __DIR__ . '/Base.php';
19
20/**
21 * Test the Kolab driver.
22 *
23 * Copyright 2011-2017 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 */
35class Turba_Unit_Driver_KolabTest extends Turba_Unit_Driver_Base
36{
37    protected $backupGlobals = false;
38
39    public static function setUpBeforeClass()
40    {
41        return;
42        parent::setUpBeforeClass();
43        self::$driver = self::createKolabDriverWithShares(self::$setup);
44    }
45
46    public function setUp()
47    {
48        $this->markTestIncomplete("No query of type 'Share' registered!");
49    }
50}