You are here

function file_test_get_all_calls in SimpleTest 7

Get an array with the calls for all hooks.

Return value

An array keyed by hook name ('load', 'validate', 'download', 'references', 'insert', 'update', 'copy', 'move', 'delete') with values being arrays of parameters passed to each call.

1 call to file_test_get_all_calls()
FileHookTestCase::assertFileHooksCalled in tests/file.test
Assert that all of the specified hook_file_* hooks were called once, other values result in failure.

File

tests/file_test.module, line 151
Helper module for the file tests.

Code

function file_test_get_all_calls() {
  return variable_get('file_test_results', array());
}