function FileFieldWidgetTest::getTestFile
Retrieves a sample file of the specified type.
Return value
\Drupal\file\FileInterface The new unsaved file entity.
File
- 
              core/modules/ file/ tests/ src/ FunctionalJavascript/ FileFieldWidgetTest.php, line 222 
Class
- FileFieldWidgetTest
- Tests the file field widget, single and multi-valued, using AJAX upload.
Namespace
Drupal\Tests\file\FunctionalJavascriptCode
public function getTestFile($type_name, $size = NULL) {
  // Get a file to upload.
  $file = current($this->getTestFiles($type_name, $size));
  // Add a filesize property to files as would be read by
  // \Drupal\file\Entity\File::load().
  $file->filesize = filesize($file->uri);
  return File::create((array) $file);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
