1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
// this file will hold test configuration settings, such as server names, login credentials, etc.
/**
* The base URI that will be loaded and from which all tests will begin.
* @var string
*/
static $_appRoot = 'http://www.example.com/agasti/';
/**
* The default username the tests will use when authenticating to the application.
* @var string
*/
static $_appUsername = 'username_here';
/**
* The default password the tests will use when authenticating to the application.
* @var string
*/
static $_appPassword = 'password_here';
|