You are here

EntityQueryTest.php in MongoDB 8

File

src/Tests/Entity/EntityQueryTest.php
View source
<?php

namespace Drupal\mongodb\Tests\Entity;

use Drupal\system\Tests\Entity\EntityQueryTest as EntityQueryTestBase;

/**
 * Tests the basic MongoDB Entity API.
 *
 * @group Entity
 */
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() {
  }

}

Classes

Namesort descending Description
EntityQueryTest Tests the basic MongoDB Entity API.