Merge pull request #23226 from MegaphoneJon/individual-employers
[civicrm-core.git] / tests / phpunit / CiviTest / ReleaseTestSettings.php.txt
1 <?php
2
3 class ReleaseTestSettings {
4
5 public $publicSandbox = FALSE;
6 public $browser = '*firefox';
7 public $sandboxURL = 'http://url.url';
8 public $sandboxPATH = '';
9 public $installPATH = '/sites/trunk.drupal/modules/civicrm/install/';
10 public $upgradePATH = '/civicrm/upgrade?reset=1';
11 public $username = '';
12 public $password = '';
13 public $adminUsername = '';
14 public $adminPassword = '';
15 public $UFemail = 'noreply@civicrm.org';
16
17 public $civiDBServer = 'localhost';
18 public $civiDBUser = '';
19 public $civiDBPass = '';
20 public $civiDBName = '';
21
22 public $drupalDBServer = 'localhost';
23 public $drupalDBUser = '';
24 public $drupalDBPass = '';
25 public $drupalDBName = '';
26
27 public function __construct() {
28 $this->fullSandboxPath = $this->sandboxURL . $this->sandboxPATH;
29 $this->installURL = $this->fullSandboxPath . $this->installPATH;
30 $this->upgradeURL = $this->fullSandboxPath . $this->upgradePATH;
31 }
32
33 }