@covers PHPUnit_Framework_Assert::assertFileNotEquals
public function testAssertFileNotEquals() {
$this
->assertFileNotEquals($this->filesDirectory . 'foo.xml', $this->filesDirectory . 'bar.xml');
try {
$this
->assertFileNotEquals($this->filesDirectory . 'foo.xml', $this->filesDirectory . 'foo.xml');
} catch (PHPUnit_Framework_AssertionFailedError $e) {
return;
}
$this
->fail();
}