8398c9048d
code was modified slightly, so the code differs from the original downloadable 1.9.5 version
69 lines
2 KiB
PHP
69 lines
2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Zend Framework
|
|
*
|
|
* LICENSE
|
|
*
|
|
* This source file is subject to the new BSD license that is bundled
|
|
* with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* http://framework.zend.com/license/new-bsd
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@zend.com so we can send you a copy immediately.
|
|
*
|
|
* @category ZendX
|
|
* @package ZendX_Db
|
|
* @subpackage UnitTests
|
|
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
* @version $Id: TestSetup.php 4791 2007-05-12 23:54:20Z bkarwin $
|
|
*/
|
|
|
|
|
|
/**
|
|
* @see ZendX_Db_TestSetup
|
|
*/
|
|
require_once 'ZendX/Db/TestSetup.php';
|
|
|
|
|
|
PHPUnit_Util_Filter::addFileToFilter(__FILE__);
|
|
|
|
|
|
/**
|
|
* @category ZendX
|
|
* @package ZendX_Db
|
|
* @subpackage UnitTests
|
|
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
abstract class ZendX_Db_Table_TestSetup extends Zend_Db_TestSetup
|
|
{
|
|
|
|
/**
|
|
* @var array of Zend_Db_Table_Abstract
|
|
*/
|
|
protected $_table = array();
|
|
|
|
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');
|
|
}
|
|
|
|
protected function _getTable($tableClass, $options = array())
|
|
{
|
|
if (is_array($options) && !isset($options['db'])) {
|
|
$options['db'] = $this->_db;
|
|
}
|
|
Zend_Loader::loadClass($tableClass);
|
|
$table = new $tableClass($options);
|
|
return $table;
|
|
}
|
|
|
|
}
|