Contao\CoreBundle\Test\Exception\AjaxRedirectResponseExceptionTest::testInstantiation PHP Method

testInstantiation() public method

Tests the object instantiation.
public testInstantiation ( )
    public function testInstantiation()
    {
        $exception = new AjaxRedirectResponseException('http://example.org');
        $this->assertInstanceOf('Contao\\CoreBundle\\Exception\\AjaxRedirectResponseException', $exception);
    }
AjaxRedirectResponseExceptionTest