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

PmaSeleniumLoginTest.php « test - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dad0f5fd2a61a0507a0b302977c50a56844b48f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Selenium TestCase for login related tests
 *
 * @version $Id$
 * @package phpMyAdmin-test
 */

require_once('PmaSeleniumTestCase.php');


class PmaSeleniumLoginTest extends PmaSeleniumTestCase 
{
    public function testLogin()
    {
        $this->doLogin();
        $this->assertRegExp("/phpMyAdmin .*-dev/", $this->getTitle());
    }
}
?>