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

PMA_foreignKeySupported_test.php « test - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d3e1ab335cc9e6584d3712aec40f0f289fc50a5 (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
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Test for supporting foreign key
 *
 * @package phpMyAdmin-test
 * @version $Id$
 */

/**
 * Tests core.
 */
require_once 'PHPUnit/Framework.php';

/**
 * Include to test.
 */
require_once './libraries/common.lib.php';

/**
 * Test supported foreign key.
 *
 */
class PMA_foreignKeySupported_test extends PHPUnit_Framework_TestCase
{
    /**
     * data provider for foreign key supported test
     */

    public function foreignkeySupportedDataProvider() {
        return array(
            array('MyISAM', false),
            array('innodb', true),
            array('pBxT', true)
        );
    }

    /**
     * foreign key supported test
     * @dataProvider foreignkeySupportedDataProvider
     */

    public function testForeignkeySupported($a, $e) {
        $this->assertEquals($e, PMA_foreignkey_supported($a));
    }
}
?>