function _image_test_log_call in SimpleTest 7
Store the values passed to a toolkit call.
Parameters
$op: One of the image toolkit operations: 'get_info', 'load', 'save', 'settings', 'resize', 'rotate', 'crop', 'desaturate'.
$args: Values passed to hook.
See also
8 calls to _image_test_log_call()
- image_test_crop in tests/
image_test.module - Image tookit's crop operation.
- image_test_desaturate in tests/
image_test.module - Image tookit's desaturate operation.
- image_test_get_info in tests/
image_test.module - Image toolkit's get_info operation.
- image_test_load in tests/
image_test.module - Image tookit's load operation.
- image_test_resize in tests/
image_test.module - Image tookit's resize operation.
File
- tests/
image_test.module, line 67 - Helper module for the image tests.
Code
function _image_test_log_call($op, $args) {
$results = variable_get('image_test_results', array());
$results[$op][] = $args;
variable_set('image_test_results', $results);
}