GcBackend\Controller\IndexControllerTest::testKeepAliveAction PHP Метод

testKeepAliveAction() публичный Метод

Test
public testKeepAliveAction ( ) : void
Результат void
    public function testKeepAliveAction()
    {
        $this->dispatch('/admin/keep-alive');
        $this->assertResponseStatusCode(200);
        $this->assertModuleName('GcBackend');
        $this->assertControllerName('AdminController');
        $this->assertControllerClass('IndexController');
        $this->assertMatchedRouteName('admin/keep-alive');
    }