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\EntityView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
EntityQueryTest:: |
static | property | ||
EntityQueryTest:: |
protected | function | ||
EntityQueryTest:: |
public | function |