Merge in 5.11
[civicrm-core.git] / Civi / Test / EndToEndInterface.php
1 <?php
2 namespace Civi\Test;
3
4 /**
5 * Interface EndToEndInterface
6 * @package Civi\Test
7 *
8 * To run your test against a live, CMS-integrated database, flag it with the the
9 * EndToEndInterface.
10 *
11 * Note: The global variable $_CV should be pre-populated with some interesting data:
12 *
13 * - $_CV['CMS_URL']
14 * - $_CV['ADMIN_USER']
15 * - $_CV['ADMIN_PASS']
16 * - $_CV['ADMIN_EMAIL']
17 * - $_CV['DEMO_USER']
18 * - $_CV['DEMO_PASS']
19 * - $_CV['DEMO_EMAIL']
20 *
21 * Alternatively, if you wish to run a test in a headless environment,
22 * flag it with HeadlessInterface.
23 *
24 * @see HeadlessInterface
25 */
26 interface EndToEndInterface {
27
28 }