function MediaLibraryStateTest::testOpenerParameters
Tests opener parameters.
@legacy-covers ::getOpenerParameters
File
- 
              core/modules/ media_library/ tests/ src/ Kernel/ MediaLibraryStateTest.php, line 376 
Class
- MediaLibraryStateTest
- Tests the media library state value object.
Namespace
Drupal\Tests\media_library\KernelCode
public function testOpenerParameters() : void {
  $state = MediaLibraryState::create('test', [
    'file',
  ], 'file', -1, [
    'foo' => 'baz',
  ]);
  $this->assertSame([
    'foo' => 'baz',
  ], $state->getOpenerParameters());
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
