function NotificationsTestCase::printObject in Notifications 6.3
Same name and namespace in other branches
- 6.2 tests/notifications_test_case.inc \NotificationsTestCase::printObject()
File
- tests/
notifications_test_case.inc, line 13 - Base class for Notifications Tests
Class
- NotificationsTestCase
- @file Base class for Notifications Tests
Code
function printObject($object, $title = 'DEBUG Object') {
$output = $title . ':';
$output .= $this
->formatTable($object);
$this
->assertTrue(TRUE, $output);
}