You are here

public function FinderTest::testInWithNonDirectoryGlob in Database Sanitize 7

@expectedException \InvalidArgumentException

File

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

Class

FinderTest

Namespace

Symfony\Component\Finder\Tests

Code

public function testInWithNonDirectoryGlob() {
  $finder = new Finder();
  $finder
    ->in(__DIR__ . '/Fixtures/A/a*');
}