You are here

TestNodeInterface.php in Search API 8

File

tests/src/Unit/TestNodeInterface.php
View source
<?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 {

}

Interfaces

Namesort descending Description
TestNodeInterface Provides a testable version of \Drupal\node\NodeInterface.