function LoggingTest::testGetLoggingWrongKey

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Database/LoggingTest.php \Drupal\KernelTests\Core\Database\LoggingTest::testGetLoggingWrongKey()
  2. 10 core/tests/Drupal/KernelTests/Core/Database/LoggingTest.php \Drupal\KernelTests\Core\Database\LoggingTest::testGetLoggingWrongKey()
  3. 11.x core/tests/Drupal/KernelTests/Core/Database/LoggingTest.php \Drupal\KernelTests\Core\Database\LoggingTest::testGetLoggingWrongKey()

Tests that getLog with a wrong key return an empty array.

File

core/tests/Drupal/KernelTests/Core/Database/LoggingTest.php, line 143

Class

LoggingTest
Tests the query logging facility.

Namespace

Drupal\KernelTests\Core\Database

Code

public function testGetLoggingWrongKey() {
    $result = Database::getLog('wrong');
    $this->assertEqual($result, [], 'The function getLog with a wrong key returns an empty array.');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.