function DbLogTest::verifySort
Verifies the sorting functionality of the database logging reports table.
Parameters
string $sort: The sort direction.
string $order: The order by which the table should be sorted.
1 call to DbLogTest::verifySort()
- DbLogTest::testDbLog in core/modules/ dblog/ tests/ src/ Functional/ DbLogTest.php 
- Tests Database Logging module functionality through interfaces.
File
- 
              core/modules/ dblog/ tests/ src/ Functional/ DbLogTest.php, line 382 
Class
- DbLogTest
- Generate events and verify dblog entries; verify user access to log reports based on permissions.
Namespace
Drupal\Tests\dblog\FunctionalCode
public function verifySort($sort = 'asc', $order = 'Date') {
  $this->drupalGet('admin/reports/dblog', [
    'query' => [
      'sort' => $sort,
      'order' => $order,
    ],
  ]);
  $this->assertSession()
    ->statusCodeEquals(200);
  $this->assertText(t('Recent log messages'), 'DBLog report was displayed correctly and sorting went fine.');
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
