ApplicationTest\Controller\ZZIndexControllerDevModeTest::testIndexActionRedirectsToAdminUi PHP Méthode

testIndexActionRedirectsToAdminUi() public méthode

    public function testIndexActionRedirectsToAdminUi()
    {
        $this->dispatch('/', 'GET');
        $this->assertResponseStatusCode(302);
        $this->assertRedirectRegex('#/ui$#');
    }
ZZIndexControllerDevModeTest