One correction. I previously posted
tests/application/modules/order/models/OrderRepository.php the filename is
actually OrderRepositoryTest.php

One other thing in tests/application/controllers I have
IndexControllerTest.php
<?php
class IndexControllerTest extends ControllerTestCase
{
    public function testIndexAction() {
        $this->dispatch('/');
        $this->assertController('index');
        $this->assertAction('index');
    }

    public function testErrorURL() {
        $this->dispatch('foo');
        $this->assertController('error');
        $this->assertAction('error');
    }
}

If I remove tests/application/modules/order/models/OrderRepositoryTest.php
then IndexControllerTest produces output. I put OrderRepositoryTest.php
back, no output from any tests.

Thanks. 

-- 
View this message in context: 
http://n4.nabble.com/Bootstrapping-modules-and-testing-tp680333p758620.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to