class YamlDiscoveryTest
YamlDiscovery component unit tests.
@group Discovery
Hierarchy
- class \Drupal\Tests\Core\Discovery\YamlDiscoveryTest extends \PHPUnit\Framework\TestCase
 
Expanded class hierarchy of YamlDiscoveryTest
File
- 
              core/
tests/ Drupal/ Tests/ Core/ Discovery/ YamlDiscoveryTest.php, line 18  
Namespace
Drupal\Tests\Core\DiscoveryView source
class YamlDiscoveryTest extends TestCase {
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    // Ensure that FileCacheFactory has a prefix.
    FileCacheFactory::setPrefix('prefix');
  }
  
  /**
   * Tests if filename is output for a broken YAML file.
   */
  public function testFilenameForBrokenYml() {
    vfsStreamWrapper::register();
    $root = new vfsStreamDirectory('modules');
    vfsStreamWrapper::setRoot($root);
    $url = vfsStream::url('modules');
    mkdir($url . '/test_broken');
    file_put_contents($url . '/test_broken/test_broken.test.yml', "broken:\n:");
    $this->expectException(InvalidDataTypeException::class);
    $this->expectExceptionMessage('vfs://modules/test_broken/test_broken.test.yml');
    $directories = [
      'test_broken' => $url . '/test_broken',
    ];
    $discovery = new YamlDiscovery('test', $directories);
    $discovery->findAll();
  }
}
Members
| Title Sort descending | Modifiers | Object type | Summary | 
|---|---|---|---|
| YamlDiscoveryTest::setUp | protected | function | |
| YamlDiscoveryTest::testFilenameForBrokenYml | public | function | Tests if filename is output for a broken YAML file. | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.