Ojs\ApiBundle\Tests\Controller\ContactRestControllerTest::testPostContactAction PHP Метод

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

    public function testPostContactAction()
    {
        $content = ['title' => 1, 'fullName' => 'PHPUnit Test Full Name Field en - POST', 'address' => 'PHPUnit Test Address Field en - POST', 'phone' => 'PHPUnit Test Phone Field en - POST', 'email' => 'PHPUnit Test Email Field en - POST', 'tags' => ['phpunit'], 'contactType' => 4, 'journal' => 1, 'country' => 216];
        $this->client->request('POST', '/api/v1/contacts?apikey=' . $this->apikey, [], [], ['CONTENT_TYPE' => 'application/json'], json_encode($content));
        $this->assertStatusCode(201, $this->client);
    }