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;
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() {
}
}