How's this done? Do I just prepare a $_POST/$_GET/$_FILES set and pass it to the controller? Or is there some more elegant way to test the Yii controllers?
Thank you for your help, MrB
|
How's this done? Do I just prepare a $_POST/$_GET/$_FILES set and pass it to the controller? Or is there some more elegant way to test the Yii controllers? Thank you for your help, MrB |
|||
|
|
|
Usually unit testing performing for models, helper, components, etc. So in two words for something that implement application business logic. For test application controllers commonly used "Functional Testing". More information about performing such testing can be found on Yii site: http://www.yiiframework.com/doc/guide/1.1/en/test.functional. In a nutshell use Selenium to call web-browser that open some url and after this test return for have some information. Another technique to test controllers described on http://www.yiiframework.com/forum/index.php?/topic/8298-testing-controller/ By the way if your have difficult logic implements into your controller look for "Fat Model" approach in MVC pattern. More information " MVC in PHP - fat model or fat controller ? " |
|||||
|