You are here

public function ArrayConfigTest::testMergableNumericArray in Little helpers 7.2

Test that numeric arrays are not mergable.

File

tests/ArrayConfigTest.php, line 63

Class

ArrayConfigTest
Unit-tests for the array config helper class.

Namespace

Drupal\little_helpers

Code

public function testMergableNumericArray() {
  $this
    ->assertFalse(ArrayConfig::isMergable([
    'a',
    1,
    [],
  ]));
}