facets-8.x-1.x-dev/tests/src/Unit/Drupal10CompatibilityUnitTestCase.php
tests/src/Unit/Drupal10CompatibilityUnitTestCase.php
<?php
namespace Drupal\Tests\facets\Unit;
use Drupal\Tests\UnitTestCase;
if (class_exists('\Prophecy\PhpUnit\ProphecyTrait')) {
/**
* Drupal 10 version.
*/
abstract class Drupal10CompatibilityUnitTestCase extends UnitTestCase {
use \Prophecy\PhpUnit\ProphecyTrait;
}
}
else {
/**
* Drupal 9 version.
*/
abstract class Drupal10CompatibilityUnitTestCase extends UnitTestCase {}
}
