You are here

function FileUnmanagedCopyTest::testNonExistent in SimpleTest 7

Copy a non-existent file.

File

tests/file.test, line 1179
This provides SimpleTests for the core file handling functionality. These include FileValidateTest and FileSaveTest.

Class

FileUnmanagedCopyTest
Unmanaged copy related tests.

Code

function testNonExistent() {

  // Copy non-existent file
  $desired_filepath = $this
    ->randomName();
  $this
    ->assertFalse(file_exists($desired_filepath), t("Randomly named file doesn't exists."));
  $new_filepath = file_unmanaged_copy($desired_filepath, $this
    ->randomName());
  $this
    ->assertFalse($new_filepath, t('Copying a missing file fails.'));
}