2008-12-23 23:28:08 +00:00
|
|
|
<?php
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-12-23 23:28:08 +00:00
|
|
|
/**
|
|
|
|
* Short description for file.
|
|
|
|
*
|
|
|
|
* Long description for file
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) Tests <https://trac.cakephp.org/wiki/Developement/TestSuite>
|
2009-11-06 04:34:28 +00:00
|
|
|
* Copyright 2005-2009, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
|
2008-12-23 23:28:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The Open Group Test Suite License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2009-11-06 04:34:28 +00:00
|
|
|
* @copyright Copyright 2005-2009, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
|
2008-12-23 23:28:08 +00:00
|
|
|
* @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests
|
2009-03-19 21:10:13 +00:00
|
|
|
* @package cake
|
2008-12-23 23:28:08 +00:00
|
|
|
* @subpackage cake.tests.fixtures
|
|
|
|
* @since CakePHP(tm) v 1.2.0.7953
|
|
|
|
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
|
|
|
*/
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-12-23 23:28:08 +00:00
|
|
|
/**
|
|
|
|
* Short description for class.
|
|
|
|
*
|
2009-03-19 21:10:13 +00:00
|
|
|
* @package cake
|
2008-12-23 23:28:08 +00:00
|
|
|
* @subpackage cake.tests.fixtures
|
|
|
|
*/
|
|
|
|
class FruitFixture extends CakeTestFixture {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-12-23 23:28:08 +00:00
|
|
|
/**
|
|
|
|
* name property
|
|
|
|
*
|
|
|
|
* @var string 'Fruit'
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
var $name = 'Fruit';
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-12-23 23:28:08 +00:00
|
|
|
/**
|
|
|
|
* fields property
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
var $fields = array(
|
|
|
|
'id' => array('type' => 'string', 'length' => 36, 'key' => 'primary'),
|
|
|
|
'name' => array('type' => 'string', 'length' => 255),
|
|
|
|
'color' => array('type' => 'string', 'length' => 13),
|
|
|
|
'shape' => array('type' => 'string', 'length' => 255),
|
|
|
|
'taste' => array('type' => 'string', 'length' => 255)
|
|
|
|
);
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-12-23 23:28:08 +00:00
|
|
|
/**
|
|
|
|
* records property
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
var $records = array(
|
2008-12-25 22:51:10 +00:00
|
|
|
array(
|
|
|
|
'id' => '481fc6d0-b920-43e0-a40d-6d1740cf8569', 'name' => 'Orange',
|
|
|
|
'color' => 'orange', 'shape' => 'Spherical', 'taste' => 'Tangy & Sweet'
|
|
|
|
)
|
2008-12-23 23:28:08 +00:00
|
|
|
);
|
|
|
|
}
|
2008-12-25 22:51:10 +00:00
|
|
|
|
2008-12-23 23:28:08 +00:00
|
|
|
?>
|