commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / tests / phpunit / CiviTest / ReleaseTestSettings.php.txt
1 <?php
2
3 class ReleaseTestSettings {
4
5 var $publicSandbox = false;
6 var $browser = '*firefox';
7 var $sandboxURL = 'http://url.url';
8 var $sandboxPATH = '';
9 var $installPATH = '/sites/trunk.drupal/modules/civicrm/install/';
10 var $upgradePATH = '/civicrm/upgrade?reset=1';
11 var $username = '';
12 var $password = '';
13 var $adminUsername = '';
14 var $adminPassword = '';
15 var $UFemail = 'noreply@civicrm.org';
16
17 var $civiDBServer = 'localhost';
18 var $civiDBUser = '';
19 var $civiDBPass = '';
20 var $civiDBName = '';
21
22 var $drupalDBServer = 'localhost';
23 var $drupalDBUser = '';
24 var $drupalDBPass = '';
25 var $drupalDBName = '';
26
27
28 function __construct() {
29 $this->fullSandboxPath = $this->sandboxURL . $this->sandboxPATH;
30 $this->installURL = $this->fullSandboxPath . $this->installPATH;
31 $this->upgradeURL = $this->fullSandboxPath . $this->upgradePATH;
32 }
33
34 }
35 ?>