You are here

public function CleanerTestBase::cleanerGetLog in Cleaner 7

Go to the log page.

2 calls to CleanerTestBase::cleanerGetLog()
CleanerTestCacheClearing::testCacheClearing in tests/cleaner_cache.test
Test clearing caches.
CleanerTestFilesClearing::testFilesClearing in tests/cleaner_files.test
Test clearing CSS/JS files.

File

tests/cleaner_base.test, line 113
File with a base class for the Cleaner test cases.

Class

CleanerTestBase
Class CleanerTestBase.

Code

public function cleanerGetLog() {

  // Go to the watchdog logs.
  $this
    ->drupalGet('admin/reports/dblog');

  // Assert response.
  $this
    ->assertResponse(200);
}