2011-05-31 23:40:29 +08:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Short description for file.
|
|
|
|
*
|
2013-05-29 20:19:14 +02:00
|
|
|
* PHP 5
|
2011-05-31 23:40:29 +08:00
|
|
|
*
|
2012-04-26 19:49:18 -07:00
|
|
|
* CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
|
2013-02-08 20:59:49 +09:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2011-05-31 23:40:29 +08:00
|
|
|
*
|
|
|
|
* Licensed under The Open Group Test Suite License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2013-02-08 20:59:49 +09:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2012-04-26 19:49:18 -07:00
|
|
|
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
|
2011-07-26 01:46:14 -04:30
|
|
|
* @package Cake.Test.Fixture
|
2011-05-31 23:40:29 +08:00
|
|
|
* @since CakePHP(tm) v 1.2.0.4667
|
2013-05-31 00:11:14 +02:00
|
|
|
* @license http://www.opensource.org/licenses/opengroup.php Open Group Test Suite License
|
2011-05-31 23:40:29 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2013-05-31 00:11:14 +02:00
|
|
|
* PrefixTestFixture
|
2011-05-31 23:40:29 +08:00
|
|
|
*
|
2011-07-26 01:46:14 -04:30
|
|
|
* @package Cake.Test.Fixture
|
2011-05-31 23:40:29 +08:00
|
|
|
*/
|
|
|
|
class PrefixTestFixture extends CakeTestFixture {
|
|
|
|
|
2011-10-10 23:18:48 +02:00
|
|
|
public $name = 'PrefixTest';
|
2012-03-17 23:31:17 -04:00
|
|
|
|
2011-10-10 23:18:48 +02:00
|
|
|
public $table = 'prefix_prefix_tests';
|
2011-05-31 23:40:29 +08:00
|
|
|
|
2011-10-10 23:18:48 +02:00
|
|
|
public $fields = array(
|
2011-05-31 23:40:29 +08:00
|
|
|
'id' => array('type' => 'integer', 'key' => 'primary'),
|
|
|
|
);
|
2012-03-17 23:31:17 -04:00
|
|
|
|
2011-05-31 23:40:29 +08:00
|
|
|
}
|