Backup\Controller\IndexControllerTest::testIndexAction PHP Method

testIndexAction() public method

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