createUri(); // Delete a regular file $this->assertTrue(file_unmanaged_delete($uri), 'Deleted worked.'); $this->assertFalse(file_exists($uri), 'Test file has actually been deleted.'); } /** * Try deleting a missing file. */ public function testMissing() { // Try to delete a non-existing file $this->assertTrue(file_unmanaged_delete(file_default_scheme() . '/' . $this->randomMachineName()), 'Returns true when deleting a non-existent file.'); } /** * Try deleting a directory. */ public function testDirectory() { // A directory to operate on. $directory = $this->createDirectory(); // Try to delete a directory $this->assertFalse(file_unmanaged_delete($directory), 'Could not delete the delete directory.'); $this->assertTrue(file_exists($directory), 'Directory has not been deleted.'); } }