Ojs\ApiBundle\Tests\Controller\PersonTitleRestControllerTest::testPutPersonTitleAction PHP Метод

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

    public function testPutPersonTitleAction()
    {
        $content = ['translations' => [$this->locale => ['title' => 'PHPUnit Test Title Field ' . $this->locale . ' - PUT']]];
        $this->client->request('PUT', '/api/v1/persontitles/550?apikey=' . $this->apikey, [], [], ['CONTENT_TYPE' => 'application/json'], json_encode($content));
        $this->assertStatusCode(201, $this->client);
    }