You are here

function NotificationsTestCase::dumpLogs in Notifications 6.3

Same name and namespace in other branches
  1. 6.2 tests/notifications_test_case.inc \NotificationsTestCase::dumpLogs()

File

tests/notifications_test_case.inc, line 73
Base class for Notifications Tests

Class

NotificationsTestCase
@file Base class for Notifications Tests

Code

function dumpLogs() {
  if ($logs = notifications_log()) {
    $this
      ->assertTrue(TRUE, theme('item_list', $logs, 'Notifications logs'));
  }
}