public function MimeTypeTest::testGuessImageWithDirectory

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/File/MimeType/MimeTypeTest.php, line 33

Class

MimeTypeTest

Namespace

Symfony\Component\HttpFoundation\Tests\File

Code

public function testGuessImageWithDirectory() {
  $this
    ->setExpectedException('Symfony\\Component\\HttpFoundation\\File\\Exception\\FileNotFoundException');
  MimeTypeGuesser::getInstance()
    ->guess(__DIR__ . '/../Fixtures/directory');
}