2011-05-31 15:40:29 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Short description for file.
|
|
|
|
*
|
2012-04-27 02:49:18 +00:00
|
|
|
* CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
|
2013-02-08 11:59:49 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2011-05-31 15:40:29 +00:00
|
|
|
*
|
2013-11-13 17:52:06 +00:00
|
|
|
* Licensed under The MIT License
|
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
2011-05-31 15:40:29 +00:00
|
|
|
*
|
2013-02-08 11:59:49 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2012-04-27 02:49:18 +00:00
|
|
|
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Fixture
|
2011-05-31 15:40:29 +00:00
|
|
|
* @since CakePHP(tm) v 1.2.0.4667
|
2013-11-13 17:52:06 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
2011-05-31 15:40:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2013-05-30 22:11:14 +00:00
|
|
|
* PrefixTestFixture
|
2011-05-31 15:40:29 +00:00
|
|
|
*
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Fixture
|
2011-05-31 15:40:29 +00:00
|
|
|
*/
|
|
|
|
class PrefixTestFixture extends CakeTestFixture {
|
|
|
|
|
2011-10-10 21:18:48 +00:00
|
|
|
public $table = 'prefix_prefix_tests';
|
2011-05-31 15:40:29 +00:00
|
|
|
|
2011-10-10 21:18:48 +00:00
|
|
|
public $fields = array(
|
2011-05-31 15:40:29 +00:00
|
|
|
'id' => array('type' => 'integer', 'key' => 'primary'),
|
|
|
|
);
|
2012-03-18 03:31:17 +00:00
|
|
|
|
2011-05-31 15:40:29 +00:00
|
|
|
}
|