blob: 547ff2f01eb75c50cc3c33239651e74fc504a932 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
require_once 'PHPUnit/Extensions/SeleniumTestCase.php';
class PradoGenericSeleniumTest extends PHPUnit_Extensions_SeleniumTestCase
{
protected function setUp()
{
$this->setBrowser('*googlechrome');
$this->setBrowserUrl('http://127.0.0.1/prado-3.2/tests/FunctionalTests/');
}
protected function tearDown()
{
}
}
|