ControllerTest::test PHP Method

test() public method

public test ( )
    function test()
    {
        $controller = new HelloWorldController();
        ok($controller);
        $response = $controller->runWrapper(array($controller, 'indexAction'), array('name' => 'John'));
        is('Hello John', $response);
        $response = $controller->dispatchAction('index', array('name' => 'Mary'));
        is('Hello Mary', $response);
    }
ControllerTest