You are here

public function ConfigListerTest::testProviderHasConfig in Configuration Update Manager 8

@covers \Drupal\config_update\ConfigListerWithProviders::providerHasConfig @dataProvider providerHasConfigProvider

File

tests/src/Unit/ConfigListerTest.php, line 283

Class

ConfigListerTest
Tests the \Drupal\config_update\ConfigListerWithProviders class.

Namespace

Drupal\Tests\config_update\Unit

Code

public function testProviderHasConfig($a, $b, $expected) {
  $this
    ->assertEquals($expected, $this->configLister
    ->providerHasConfig($a, $b));
}