1<?php
2/**
3 * Test the core Turba class with the Kolab backend.
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 core Turba class with the Kolab backend.
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_Turba_KolabTest extends Turba_Unit_Turba_Base
36{
37    protected $backupGlobals = false;
38
39    /**
40     * The default share name expected to be used.
41     *
42     * @var string
43     */
44    protected $default_name = 'Contacts';
45
46    public static function setUpBeforeClass()
47    {
48        self::$setup = new Horde_Test_Setup();
49        parent::setUpBeforeClass();
50        self::createKolabShares(self::$setup);
51    }
52
53    public function setUp()
54    {
55        $this->markTestIncomplete("No query of type 'Share' registered!");
56    }
57}
58