@covers PHPUnit_Framework_Assert::assertFileExists
public function testAssertFileExists() {
$this
->assertFileExists(__FILE__);
try {
$this
->assertFileExists(__DIR__ . DIRECTORY_SEPARATOR . 'NotExisting');
} catch (PHPUnit_Framework_AssertionFailedError $e) {
return;
}
$this
->fail();
}