Merge pull request #14266 from seamuslee001/dev_core_369
[civicrm-core.git] / tests / phpunit / CiviTest / CiviUnitTestCase.php
index 63c6a363de46fa4f81d35c6bbec42e5643b0b7ca..7777476325f9577a7890a21286712b9fdcf29d40 100644 (file)
@@ -118,6 +118,16 @@ class CiviUnitTestCase extends PHPUnit_Extensions_Database_TestCase {
    */
   private $tx = NULL;
 
+  /**
+   * Array of IDs created to support the test.
+   *
+   * e.g
+   * $this->ids = ['Contact' => ['descriptive_key' => $contactID], 'Group' => [$groupID]];
+   *
+   * @var array
+   */
+  protected $ids = [];
+
   /**
    * Class used for hooks during tests.
    *