Ojs\ApiBundle\Tests\Controller\JournalArticleCitationRestControllerTest::testPutAuthorAction PHP Метод

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

public testPutAuthorAction ( )
    public function testPutAuthorAction()
    {
        $content = ['raw' => 'Hello raw citation PUT', 'type' => 2, 'orderNum' => 2];
        $this->client->request('PUT', '/api/v1/journal/1/article/1/citations/550?apikey=' . $this->apikey, [], [], ['CONTENT_TYPE' => 'application/json'], json_encode($content));
        $this->assertStatusCode(201, $this->client);
    }