Ojs\ApiBundle\Tests\Controller\PostRestControllerTest::testPostPostAction PHP Метод

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

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