Ojs\ApiBundle\Tests\Controller\PublisherRestControllerTest::testPatchPublisherAction PHP Метод

testPatchPublisherAction() публичный Метод

    public function testPatchPublisherAction()
    {
        $content = ['translations' => [$this->secondLocale => ['about' => 'PHPUnit Test About Field ' . $this->secondLocale . ' - PATCH']]];
        $this->client->request('PATCH', '/api/v1/publishers/1?apikey=' . $this->apikey, [], [], ['CONTENT_TYPE' => 'application/json'], json_encode($content));
        $this->assertStatusCode(204, $this->client);
    }