Backup\Controller\IndexControllerTest::testDownloadFilesAction PHP 메소드

testDownloadFilesAction() 공개 메소드

Test
public testDownloadFilesAction ( ) : void
리턴 void
    public function testDownloadFilesAction()
    {
        $this->dispatch('/admin/module/backup/download-files');
        $this->assertResponseStatusCode(200);
        $this->assertModuleName('Backup');
        $this->assertControllerName('BackupController');
        $this->assertControllerClass('IndexController');
        $this->assertMatchedRouteName('module/backup/download-files');
    }