Ojs\ApiBundle\Tests\Controller\PublisherManagerRestControllerTest::testPutPublisherManagerAction PHP Method

testPutPublisherManagerAction() public method

    public function testPutPublisherManagerAction()
    {
        $content = ['publisher' => 1, 'user' => rand(25, 50)];
        $this->client->request('PUT', '/api/v1/publishermanagers/550?apikey=' . $this->apikey, [], [], ['CONTENT_TYPE' => 'application/json'], json_encode($content));
        $this->assertStatusCode(201, $this->client);
    }