Custom View not rendering

Hi,

I have a controller that calls my custom view, but the custom view is not getting rendered.
I cant understand the issue, everything looks correct to me.
Neither is it displaying any errors or warnings.

My module name is SCRV_SSRS_CRM_Reports_View
In my custom/modules/SCRV_SSRS_CRM_Reports_View/controller.php I have below code


require_once('include/MVC/Controller/SugarController.php');

class SCRV_SSRS_CRM_Reports_ViewController extends SugarController
{
function action_test(){
        $GLOBALS['log']->fatal('Am in Controller');
        $this->view = "test";
    }
}

And in custom/modules/SCRV_SSRS_CRM_Reports_View/views/view.test.php


if (!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');

require_once('include/MVC/View/views/view.list.php');

class SCRV_SSRS_CRM_Reports_ViewViewtest extends ViewList
{

    public function display()
    {
        echo "HIIII";
        $GLOBALS['log']->fatal('Am in View');
    }
}

Cant see the view getting rendered when I access it by
http://localhost:8080/dev-crm/index.php?module=SCRV_SSRS_CRM_Reports_View&action=test

Can anyone please help me o n above issue.
Also, its calling the constructor, however is not calling the view.