[Test] Remove skip that seems no longer required
authoreileen <emcnaughton@wikimedia.org>
Thu, 26 Mar 2020 23:46:53 +0000 (12:46 +1300)
committereileen <emcnaughton@wikimedia.org>
Thu, 26 Mar 2020 23:46:53 +0000 (12:46 +1300)
The removed line seems to be loosening the test for a deprecation that I didn't hit in testing today

tests/phpunit/api/v4/Entity/ConformanceTest.php

index 3b0357580e846ebd260dacc9448694ef5f2abcbd..7c42824ed9ff7df1edf26c4cf8be2a5068ca6b09 100644 (file)
@@ -14,8 +14,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC https://civicrm.org/licensing
- * $Id$
- *
  */
 
 
@@ -57,10 +55,16 @@ class ConformanceTest extends UnitTestCase {
     $this->loadDataSet('ConformanceTest');
     $this->creationParamProvider = \Civi::container()->get('test.param_provider');
     parent::setUp();
-    // calculateTaxAmount() for contribution triggers a deprecation notice
-    \PHPUnit\Framework\Error\Deprecated::$enabled = FALSE;
   }
 
+  /**
+   * Get entities to test.
+   *
+   * @return array
+   *
+   * @throws \API_Exception
+   * @throws \Civi\API\Exception\UnauthorizedException
+   */
   public function getEntities() {
     return Entity::get()->setCheckPermissions(FALSE)->execute()->column('name');
   }
@@ -97,7 +101,7 @@ class ConformanceTest extends UnitTestCase {
 
   /**
    * @param string $entityClass
-   * @param $entity
+   * @param string $entity
    */
   protected function checkFields($entityClass, $entity) {
     $fields = $entityClass::getFields()
@@ -114,6 +118,8 @@ class ConformanceTest extends UnitTestCase {
 
   /**
    * @param string $entityClass
+   *
+   * @return array
    */
   protected function checkActions($entityClass) {
     $actions = $entityClass::getActions()