Backup\Controller\IndexControllerTest::testDownloadFilesAction PHP Méthode

testDownloadFilesAction() public méthode

Test
public testDownloadFilesAction ( ) : void
Résultat 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');
    }