You are here

public function ConfigReverterTest::testGetFromExtension in Configuration Update Manager 8

@covers \Drupal\config_update\ConfigReverter::getFromExtension @dataProvider getFromExtensionProvider

File

tests/src/Unit/ConfigReverterTest.php, line 73

Class

ConfigReverterTest
Tests the \Drupal\config_update\ConfigReverter class.

Namespace

Drupal\Tests\config_update\Unit

Code

public function testGetFromExtension($a, $b, $expected) {
  $this
    ->assertEquals($expected, $this->configReverter
    ->getFromExtension($a, $b));
}