Ojs\ApiBundle\Tests\Controller\LangRestControllerTest::testPatchLangAction PHP Method

testPatchLangAction() public method

public testPatchLangAction ( )
    public function testPatchLangAction()
    {
        $content = ['code' => 'en', 'name' => 'PHPUnit Name Field - PATCH'];
        $this->client->request('PATCH', '/api/v1/langs/1?apikey=' . $this->apikey, [], [], ['CONTENT_TYPE' => 'application/json'], json_encode($content));
        $this->assertStatusCode(204, $this->client);
    }