> Please update from svn, and try again!
The update code from SVN works well now on example project and on one action
of my real project.
It's great ! We will try it further.
> Running your tests now, I get errors -- looks like you may need to create
an ErrorController.
When I setup ErrorController (controller, action, view codes), I never got
exception originated from wrong action name testcase any more but it seems
that I can't catch my own throwed exception such as:
class SearchController extends Zend_Controller_Action {
public function mayThrowExceptionAction(){
throw new MyAppException();
}
I force frontcontroller to throw exception by
$frontController->throwExceptions(true);
but it seems whatever setting to true or false, I never catch my own
exception.
So I try to remove ErrorController, I see my own throwed exception again.
So how do I still have ErrorController defined but still can catch my own
throwed exception.
- Tuan Ngo.