1 image.test public ImageAdminStylesUnitTest::createSampleImage($style)

Given an image style, generate an image.

File

core/modules/image/tests/image.test, line 402
Tests for image.module.

Class

ImageAdminStylesUnitTest
Tests creation, deletion, and editing of image styles and effects.

Code

public function createSampleImage($style) {
  static $file_path;

  // First, we need to make sure we have an image in our testing
  // file directory. Copy over an image on the first run.
  if (!isset($file_path)) {
    $files = $this->backdropGetTestFiles('image');
    $file = reset($files);
    $file_path = file_unmanaged_copy($file->uri);
  }

  return image_style_url($style['name'], $file_path) ? $file_path : FALSE;
}