search_api-8.x-1.15/tests/src/Unit/TestNodeInterface.php
tests/src/Unit/TestNodeInterface.php
<?php
namespace Drupal\Tests\search_api\Unit;
use Drupal\node\NodeInterface;
/**
* Provides a testable version of \Drupal\node\NodeInterface.
*
* @see https://github.com/sebastianbergmann/phpunit-mock-objects/issues/103
*/
interface TestNodeInterface extends \Iterator, NodeInterface {
}
