BrowscapPHPTest\Exception\FileNotFoundExceptionTest::testFileNotFound PHP Method

testFileNotFound() public method

public testFileNotFound ( )
    public function testFileNotFound()
    {
        /** @var \BrowscapPHP\Exception\FileNotFoundException $exception */
        $exception = FileNotFoundException::fileNotFound('test.txt');
        self::assertInstanceOf('\\BrowscapPHP\\Exception\\FileNotFoundException', $exception);
        self::assertSame('File "test.txt" does not exist', $exception->getMessage());
    }
FileNotFoundExceptionTest