Hello, I'm quiet new to Zend Framework so I hope I'm posting in the right ml.
I'm trying to unit test some forms ; i noticed that I had a problem using
this request :
$this->request
->setMethod('POST')
'firstname' => 'ééàüi',
'lastname' => 'UnitTesting',
));
$this->dispatch('user/createaccount');
Well, I checked the thing works like a charm manually so I thought maybe it
was a unit test problem.
JL.
