function MediaLibraryStateTest::testHashUnaffectedByOpenerParamOrder
Test that hash is unaffected by opener parameter order.
File
- 
              core/modules/ media_library/ tests/ src/ Kernel/ MediaLibraryStateTest.php, line 379 
Class
- MediaLibraryStateTest
- Tests the media library state value object.
Namespace
Drupal\Tests\media_library\KernelCode
public function testHashUnaffectedByOpenerParamOrder() {
  $state1 = MediaLibraryState::create('test', [
    'file',
  ], 'file', -1, [
    'foo' => 'baz',
    'baz' => 'foo',
  ]);
  $state2 = MediaLibraryState::create('test', [
    'file',
  ], 'file', -1, [
    'baz' => 'foo',
    'foo' => 'baz',
  ]);
  $this->assertSame($state1->getHash(), $state2->getHash());
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
