mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 19:38:26 +00:00
5717e3b59c
Conflicts: app/webroot/test.php cake/VERSION.txt cake/bootstrap.php cake/config/config.php cake/console/cake.php cake/console/libs/schema.php cake/console/templates/skel/webroot/test.php cake/libs/configure.php cake/tests/cases/console/libs/schema.test.php cake/tests/cases/libs/debugger.test.php cake/tests/cases/libs/model/model_write.test.php cake/tests/fixtures/aco_fixture.php
112 lines
No EOL
3.5 KiB
PHP
112 lines
No EOL
3.5 KiB
PHP
<?php
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
* ModelTest file
|
|
*
|
|
* Long description for file
|
|
*
|
|
* PHP versions 4 and 5
|
|
*
|
|
* CakePHP(tm) Tests <https://trac.cakephp.org/wiki/Developement/TestSuite>
|
|
* Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
|
|
*
|
|
* Licensed under The Open Group Test Suite License
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @filesource
|
|
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
|
|
* @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests
|
|
* @package cake
|
|
* @subpackage cake.tests.cases.libs.model
|
|
* @since CakePHP(tm) v 1.2.0.4206
|
|
* @version $Revision$
|
|
* @modifiedby $LastChangedBy$
|
|
* @lastmodified $Date$
|
|
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
|
*/
|
|
App::import('Core', array('AppModel', 'Model'));
|
|
require_once dirname(__FILE__) . DS . 'models.php';
|
|
|
|
SimpleTest::ignore('BaseModelTest');
|
|
|
|
/**
|
|
* ModelBaseTest
|
|
*
|
|
* @package cake
|
|
* @subpackage cake.tests.cases.libs.model
|
|
*/
|
|
class BaseModelTest extends CakeTestCase {
|
|
|
|
/**
|
|
* autoFixtures property
|
|
*
|
|
* @var bool false
|
|
* @access public
|
|
*/
|
|
var $autoFixtures = false;
|
|
|
|
/**
|
|
* fixtures property
|
|
*
|
|
* @var array
|
|
* @access public
|
|
*/
|
|
var $fixtures = array(
|
|
'core.category', 'core.category_thread', 'core.user', 'core.my_category', 'core.my_product',
|
|
'core.my_user', 'core.my_categories_my_users', 'core.my_categories_my_products',
|
|
'core.article', 'core.featured', 'core.article_featureds_tags', 'core.article_featured',
|
|
'core.articles', 'core.numeric_article', 'core.tag', 'core.articles_tag', 'core.comment',
|
|
'core.attachment', 'core.apple', 'core.sample', 'core.another_article', 'core.item',
|
|
'core.advertisement', 'core.home', 'core.post', 'core.author', 'core.bid', 'core.portfolio',
|
|
'core.product', 'core.project', 'core.thread', 'core.message', 'core.items_portfolio',
|
|
'core.syfile', 'core.image', 'core.device_type', 'core.device_type_category',
|
|
'core.feature_set', 'core.exterior_type_category', 'core.document', 'core.device',
|
|
'core.document_directory', 'core.primary_model', 'core.secondary_model', 'core.something',
|
|
'core.something_else', 'core.join_thing', 'core.join_a', 'core.join_b', 'core.join_c',
|
|
'core.join_a_b', 'core.join_a_c', 'core.uuid', 'core.data_test', 'core.posts_tag',
|
|
'core.the_paper_monkies', 'core.person', 'core.underscore_field', 'core.node',
|
|
'core.dependency', 'core.story', 'core.stories_tag', 'core.cd', 'core.book', 'core.basket',
|
|
'core.overall_favorite', 'core.account', 'core.content', 'core.content_account',
|
|
'core.film_file', 'core.test_plugin_article', 'core.test_plugin_comment', 'core.uuiditem',
|
|
'core.counter_cache_user', 'core.counter_cache_post',
|
|
'core.counter_cache_user_nonstandard_primary_key',
|
|
'core.counter_cache_post_nonstandard_primary_key', 'core.uuidportfolio',
|
|
'core.uuiditems_uuidportfolio', 'core.uuiditems_uuidportfolio_numericid', 'core.fruit',
|
|
'core.fruits_uuid_tag', 'core.uuid_tag', 'core.product_update_all', 'core.group_update_all'
|
|
);
|
|
|
|
/**
|
|
* start method
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
function start() {
|
|
parent::start();
|
|
$this->debug = Configure::read('debug');
|
|
Configure::write('debug', 2);
|
|
}
|
|
|
|
/**
|
|
* end method
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
function end() {
|
|
parent::end();
|
|
Configure::write('debug', $this->debug);
|
|
}
|
|
|
|
/**
|
|
* endTest method
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
function endTest() {
|
|
ClassRegistry::flush();
|
|
}
|
|
}
|
|
?>
|