Phue\Test\Transport\HttpTest::testSendRequestBadContentType PHP Method

testSendRequestBadContentType() public method

Test: Send request with bad content type
    public function testSendRequestBadContentType()
    {
        // Stub adapter methods
        $this->stubMockAdapterResponseMethods(null, 200, 'unknown');
        // Set mock adapter
        $this->transport->setAdapter($this->mockAdapter);
        // Send request
        $this->transport->sendRequest('dummy', 'GET');
    }