Omnipay\Common\Message\AbstractResponseTest::testGetRedirectResponseNotSupported PHP 메소드

testGetRedirectResponseNotSupported() 공개 메소드

    public function testGetRedirectResponseNotSupported()
    {
        $this->response = m::mock('\\Omnipay\\Common\\Message\\AbstractResponseTest_MockRedirectResponse')->makePartial();
        $this->response->shouldReceive('isRedirect')->once()->andReturn(false);
        $this->response->getRedirectResponse();
    }