Import from SVN (r45945, r596)
[civicrm-core.git] / tests / phpunit / CiviTest / CiviSeleniumSettings.php.txt
1 <?php
2
3 class CiviSeleniumSettings {
4
5 var $publicSandbox = false;
6
7 var $browser = '*firefox';
8
9 var $sandboxURL = 'http://devel.drupal.tests.dev.civicrm.org';
10
11 var $sandboxPATH = '';
12
13 var $username = 'demo';
14
15 var $password = 'demo';
16
17 var $adminUsername = 'USERNAME';
18
19 var $adminPassword = 'PASSWORD';
20
21 var $UFemail = 'noreply@civicrm.org';
22
23 /**
24 * @var int seconds
25 */
26 var $timeout = 30;
27
28 function __construct() {
29 $this->fullSandboxPath = $this->sandboxURL . $this->sandboxPATH;
30 }
31
32 }
33 ?>