First commit

This commit is contained in:
Theodotos Andreou 2018-01-14 13:10:16 +00:00
commit c6e2478c40
13918 changed files with 2303184 additions and 0 deletions

View file

@ -0,0 +1,22 @@
<?php
namespace Civi\Test;
/**
* Interface HeadlessInterface
* @package Civi\Test
*
* Mark a test with TransactionalInterface to instruct CiviTestListener to wrap
* each test in a transaction (and rollback).
*
* Note: At time of writing, CiviTestListener only supports using TransactionalInterface if
* the test is in-process and runs with CIVICRM_UF==UnitTests.
*
* For end-to-end testing, it is expected that the CMS will not participate in the transaction,
* so the transaction mechanism will not work.
*
* @see HeadlessInterface
*/
interface TransactionalInterface {
}