CRM-12193 - Use more descriptive example text
[civicrm-core.git] / tests / phpunit / CiviTest / CiviSeleniumSettings.php.txt
CommitLineData
6a488035
TO
1<?php
2
3class 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?>