Exemplo n.º 1
0
 public function tearDown()
 {
     if ($this->_db instanceof Zend_Db_Adapter_Abstract) {
         $this->_db->getProfiler()->setEnabled(false);
     }
     parent::tearDown();
 }
Exemplo n.º 2
0
 public function tearDown()
 {
     if ($this->_runtimeIncludePath) {
         $this->_restoreIncludePath();
     }
     parent::tearDown();
 }
Exemplo n.º 3
0
 public function setUp()
 {
     parent::setUp();
     $this->_table['accounts'] = $this->_getTable('Zend_Db_Table_TableAccounts');
     $this->_table['bugs'] = $this->_getTable('Zend_Db_Table_TableBugs');
     $this->_table['bugs_products'] = $this->_getTable('Zend_Db_Table_TableBugsProducts');
     $this->_table['products'] = $this->_getTable('Zend_Db_Table_TableProducts');
 }
Exemplo n.º 4
0
 public function tearDown()
 {
     $this->_db->getProfiler()->setEnabled(false);
     parent::tearDown();
 }