Ojs\ApiBundle\Tests\Controller\PublisherThemeRestControllerTest::testPutPublisherThemeAction PHP Метод

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

    public function testPutPublisherThemeAction()
    {
        $content = ['publisher' => 1, 'title' => 'PHPUnit Test Title Field en - PUT', 'public' => 1, 'css' => '*{color: red;}'];
        $this->client->request('PUT', '/api/v1/publisherthemes/550?apikey=' . $this->apikey, [], [], ['CONTENT_TYPE' => 'application/json'], json_encode($content));
        $this->assertStatusCode(201, $this->client);
    }