getPluginArguments() public method

Returns an array of plugin argument configurations
public getPluginArguments ( ) : array
return array
 /**
  * @test
  */
 public function pluginArgumentsOfActionRequestOverruleThoseOfTheHttpRequest()
 {
     $this->actionRequest->setArguments(['--pluginArgument' => 'action request']);
     $expectedResult = ['pluginArgument' => 'action request'];
     $this->assertSame($expectedResult, $this->actionRequest->getPluginArguments());
 }