function image_test_get_all_calls

Get an array with the all the calls to the toolkits since image_test_reset() was called.

Return value

An array keyed by operation name ('load', 'save', 'settings', 'resize', 'rotate', 'crop', 'desaturate') with values being arrays of parameters passed to each call.

13 calls to image_test_get_all_calls()

File

drupal/modules/simpletest/tests/image_test.module, line 52
Helper module for the image tests.

Code

function image_test_get_all_calls() {
  return variable_get('image_test_results', array());
}