Ojs\ApiBundle\Tests\Controller\AnnouncementRestControllerTest::testPutAnnouncementAction PHP Метод

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

    public function testPutAnnouncementAction()
    {
        $content = ['title' => 'PHPUnit Test Title Field en - PUT', 'image' => 'PHPUnit Test Image Field en - PUT', 'content' => 'http://phpunit.com'];
        $this->client->request('PUT', '/api/v1/announcements/550?apikey=' . $this->apikey, [], [], ['CONTENT_TYPE' => 'application/json'], json_encode($content));
        $this->assertStatusCode(201, $this->client);
    }