You are here

public function ConfigReverterTest::testGetFromActive in Configuration Update Manager 8

@covers \Drupal\config_update\ConfigReverter::getFromActive @dataProvider getFromActiveProvider

File

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

Class

ConfigReverterTest
Tests the \Drupal\config_update\ConfigReverter class.

Namespace

Drupal\Tests\config_update\Unit

Code

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