Kraken\_Unit\Network\Http\Driver\Parser\HttpParserTest::testApiParseResponse_ThrowsException_OnInvalidFormat PHP Method

testApiParseResponse_ThrowsException_OnInvalidFormat() public method

    public function testApiParseResponse_ThrowsException_OnInvalidFormat()
    {
        $parser = $this->createParser();
        $this->setExpectedException(InvalidArgumentException::class);
        $parser->parseRequest("HTTP/1.1\r\nInvalid Frame");
    }