Phprest\Response\NoContentTest::testInstantiation PHP Method

testInstantiation() public method

public testInstantiation ( )
    public function testInstantiation()
    {
        $response = new NoContent(['Content-Type' => 'application/json']);
        $this->assertEquals(204, $response->getStatusCode());
        $this->assertEquals('application/json', $response->headers->get('content-type'));
    }
NoContentTest