Delete a normal file.
function testNormal() {
// Create a file for testing
$uri = $this
->createUri();
// Delete a regular file
$this
->assertTrue(file_unmanaged_delete($uri), 'Deleted worked.');
$this
->assertFalse(file_exists($uri), 'Test file has actually been deleted.');
}