Ojs\ApiBundle\Tests\Controller\JournalThemeRestControllerTest::testPutJournalThemeAction PHP Метод

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

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