Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PMA_PropertyItem_test.php « properties « classes « test - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f5b73b7fb8b867cd28689ec7d898a74067d1e238 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * tests for PropertyItem class
 *
 * @package PhpMyAdmin-test
 */

require_once 'libraries/properties/PropertyItem.class.php';

/**
 * Tests for PropertyItem class
 *
 * @package PhpMyAdmin-test
 */
class PMA_PropertyItem_Test extends PHPUnit_Framework_TestCase
{
    protected $stub;

    /**
     * Configures global environment.
     *
     * @return void
     */
    protected function setup()
    {
        $this->stub = $this->getMockForAbstractClass('PropertyItem');
    }

    /**
     * tearDown for test cases
     *
     * @return void
     */
    public function tearDown()
    {
        unset($this->stub);
    }

    /**
     * Test for PropertyItem::getGroup
     *
     * @return void
     */
    public function testGetGroup()
    {
        $this->assertEquals(
            null,
            $this->stub->getGroup()
        );
    }
}