/**
  * Tests that find() works properly.
  *
  * @covers ::find()
  */
 public function testFind()
 {
     $pathFinder = new PathFinderNull(['data/acme.inc']);
     $path = $pathFinder->find(NULL);
     $this->assertEquals('data/acme.inc', $path);
 }