fileExists() public static method

Returns a PHPUnit_Framework_Constraint_FileExists matcher object.
public static fileExists ( ) : PHPUnit_Framework_Constraint_FileExists
return PHPUnit_Framework_Constraint_FileExists
 /**
  * @covers PHPUnit_Framework_Constraint_FileExists
  * @covers PHPUnit_Framework_Constraint_Not
  * @covers PHPUnit_Framework_Assert::logicalNot
  * @covers PHPUnit_Framework_Assert::fileExists
  */
 public function testConstraintFileNotExists2()
 {
     $constraint = PHPUnit_Framework_Assert::logicalNot(PHPUnit_Framework_Assert::fileExists());
     try {
         $constraint->fail('foo', 'custom message', TRUE);
     } catch (PHPUnit_Framework_ExpectationFailedException $e) {
         $this->assertEquals("custom message\nFailed asserting that file \"foo\" does not exist.", $e->getDescription());
         return;
     }
     $this->fail();
 }
Esempio n. 2
0
/**
 * Returns a PHPUnit_Framework_Constraint_FileExists matcher object.
 *
 * @return PHPUnit_Framework_Constraint_FileExists
 * @since  Method available since Release 3.0.0
 */
function fileExists()
{
    return PHPUnit_Framework_Assert::fileExists();
}
    /**
     * @covers PHPUnit_Framework_Constraint_FileExists
     * @covers PHPUnit_Framework_Constraint_Not
     * @covers PHPUnit_Framework_Assert::logicalNot
     * @covers PHPUnit_Framework_Assert::fileExists
     * @covers PHPUnit_Framework_TestFailure::exceptionToString
     */
    public function testConstraintFileNotExists2()
    {
        $file = dirname(__DIR__) . DIRECTORY_SEPARATOR . '_files' . DIRECTORY_SEPARATOR . 'ClassWithNonPublicAttributes.php';
        $constraint = PHPUnit_Framework_Assert::logicalNot(PHPUnit_Framework_Assert::fileExists());
        try {
            $constraint->evaluate($file, 'custom message');
        } catch (PHPUnit_Framework_ExpectationFailedException $e) {
            $this->assertEquals(<<<EOF
custom message
Failed asserting that file "{$file}" does not exist.

EOF
, PHPUnit_Framework_TestFailure::exceptionToString($e));
            return;
        }
        $this->fail();
    }