/**
  * @param string $class
  * @param bool string|$expectedValue
  * @dataProvider getFileDataProvider
  */
 public function testGetFile($class, $expectedValue)
 {
     $this->assertFalse(Magento_Autoload_IncludePath::getFile($class));
     Magento_Autoload_IncludePath::addIncludePath(__DIR__ . '/_files');
     $this->assertEquals($expectedValue, Magento_Autoload_IncludePath::getFile($class));
 }