function ToolkitTestBase::imageTestReset
Resets/initializes the history of calls to the test toolkit functions.
1 call to ToolkitTestBase::imageTestReset()
- ToolkitTestBase::setUp in core/
tests/ Drupal/ FunctionalTests/ Image/ ToolkitTestBase.php
File
-
core/
tests/ Drupal/ FunctionalTests/ Image/ ToolkitTestBase.php, line 139
Class
- ToolkitTestBase
- Base class for image manipulation testing.
Namespace
Drupal\FunctionalTests\ImageCode
protected function imageTestReset() {
// Keep track of calls to these operations
$results = [
'parseFile' => [],
'save' => [],
'settings' => [],
'apply' => [],
'resize' => [],
'rotate' => [],
'crop' => [],
'desaturate' => [],
'create_new' => [],
'scale' => [],
'scale_and_crop' => [],
'convert' => [],
];
\Drupal::state()->set('image_test.results', $results);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.