Ojs\ApiBundle\Tests\Controller\PageRestControllerTest::testPostPageAction PHP Метод

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

public testPostPageAction ( )
    public function testPostPageAction()
    {
        $content = ['translations' => [$this->locale => ['title' => 'PHPUnit Test Title Field ' . $this->locale . ' - POST', 'body' => 'PHPUnit Test Body Field ' . $this->locale . ' - POST']], 'visible' => 1];
        $this->client->request('POST', '/api/v1/pages?apikey=' . $this->apikey, [], [], ['CONTENT_TYPE' => 'application/json'], json_encode($content));
        $this->assertStatusCode(201, $this->client);
    }