You are here

class EntityQueryTest in MongoDB 8

Tests the basic MongoDB Entity API.

@group Entity

Hierarchy

  • class \Drupal\mongodb\Tests\Entity\EntityQueryTest extends \Drupal\system\Tests\Entity\EntityQueryTest

Expanded class hierarchy of EntityQueryTest

File

src/Tests/Entity/EntityQueryTest.php, line 12

Namespace

Drupal\mongodb\Tests\Entity
View source
class EntityQueryTest extends EntityQueryTestBase {
  static $modules = array(
    'mongodb',
  );
  protected function assertIdentical($first, $second, $message = '', $group = 'Other') {
    if (is_array($second)) {
      $second = array_map('intval', $second);
    }
    return parent::assertIdentical($first, $second, $message, $group);
  }
  public function testMetadata() {
  }

}

Members