function MessagingTestCase::printDebug in Messaging 7
Same name and namespace in other branches
- 6.4 tests/messaging_test_case.inc \MessagingTestCase::printDebug()
Print helper for debugging
3 calls to MessagingTestCase::printDebug()
File
- tests/
messaging_test_case.inc, line 34
Class
Code
function printDebug($data, $title = 'DEBUG') {
$string = is_array($data) || is_object($data) ? '<pre>' . print_r($data, TRUE) . '</pre>' : $data;
$this
->assertTrue(TRUE, $string, $title);
}