PhlyTest\Http\RequestTest::testConstructorRaisesExceptionForHeadersWithCRLFVectors PHP Method

testConstructorRaisesExceptionForHeadersWithCRLFVectors() public method

    public function testConstructorRaisesExceptionForHeadersWithCRLFVectors($name, $value)
    {
        $this->setExpectedException('InvalidArgumentException');
        $request = new Request(null, null, 'php://memory', [$name => $value]);
    }
RequestTest