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

« back to all changes in this revision

Viewing changes to turba-4.1.1/test/Turba/Unit/Turba/KolabTest.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 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
 */
 
18
require_once __DIR__ . '/Base.php';
 
19
 
 
20
/**
 
21
 * Test the core Turba class with the Kolab backend.
 
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_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
}