
Problem z uruchomieniem rozwiązany. Teraz kolejne kłopoty

Gdy mam taką ścieżkę aplikacji do tetsowania: http://localhost/admin/pages/lista
To jakie parametry musze podać w:
$this->dispatch(?); $this->assertRoute(?); // ? $this->assertModule(?); // ? gdy podaje admin nie działa -> dostaje Zend_Controller_Exception: No default module defined for this application $this->assertController(?); // pages $this->assertAction(?); // lista $this->assertNotRedirect();
Mam jeszcze problem z generowaniem raportów: otrzymuje:
C:\wamp\www\____ZEND____\tests>phpunit --configuration phpunit.xml System nie może odnaleźć określonej ścieżki.
Plik phpunit.xml
<phpunit bootstrap="./index.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnFailure="false" > <testsuite name="MyApp"> <directory>./</directory> </testsuite> <filter> <whitelist> <directory suffix=".php">../application/</directory> <exclude> <directory suffix=".phtml">../application/</directory> </exclude> </whitelist> </filter> <logging> <log type="coverage-html" target="./application/log/report" charset="UTF-8" yui="true" highlight="true" lowUpperBound="50" highLowerBound="80" /> <log type="testdox" target="./application/log/testdox.html" /> </logging> </phpunit>