You are here

public function ConfigDifferTest::testSame in Configuration Update Manager 8

@covers \Drupal\config_update\ConfigDiffer::same @dataProvider sameProvider

File

tests/src/Unit/ConfigDifferTest.php, line 34

Class

ConfigDifferTest
Tests the \Drupal\config_update\ConfigDiffer class.

Namespace

Drupal\Tests\config_update\Unit

Code

public function testSame($a, $b, $expected) {
  $this
    ->assertEquals($expected, $this->configDiffer
    ->same($a, $b));
}