public function FileSystemDeprecationTest::testDeprecatedFileMoveUploadedFile in Drupal 8
@expectedDeprecation drupal_move_uploaded_file() is deprecated in Drupal 8.0.x-dev and will be removed before Drupal 9.0.0. Use \Drupal\Core\File\FileSystemInterface::moveUploadedFile(). See https://www.drupal.org/node/2418133.
File
- core/
tests/ Drupal/ KernelTests/ Core/ File/ FileSystemDeprecationTest.php, line 41  
Class
- FileSystemDeprecationTest
 - Tests deprecations in file.inc.
 
Namespace
Drupal\KernelTests\Core\FileCode
public function testDeprecatedFileMoveUploadedFile() {
  $this
    ->assertNotNull(drupal_move_uploaded_file('', ''));
}