You are here

public function FinderTest::testInWithNonExistentDirectory in Database Sanitize 7

@expectedException \InvalidArgumentException

File

vendor/symfony/finder/Tests/FinderTest.php, line 294

Class

FinderTest

Namespace

Symfony\Component\Finder\Tests

Code

public function testInWithNonExistentDirectory() {
  $finder = new Finder();
  $finder
    ->in('foobar');
}