function SaveUploadTest::testNoUpload

Test for no failures when not uploading a file.

File

drupal/core/modules/file/lib/Drupal/file/Tests/SaveUploadTest.php, line 322
Definition of Drupal\file\Tests\SaveUploadTest.

Class

SaveUploadTest
Test the file_save_upload() function.

Namespace

Drupal\file\Tests

Code

function testNoUpload() {
  $this
    ->drupalPost('file-test/upload', array(), t('Submit'));
  $this
    ->assertNoRaw(t('Epic upload FAIL!'), t('Failure message not found.'));
}