2009-09-08 23:48:32 -04:00
|
|
|
<?php
|
2009-11-06 18:35:14 +11:00
|
|
|
/**
|
|
|
|
* Short description for file.
|
|
|
|
*
|
2017-06-11 00:15:34 +02:00
|
|
|
* CakePHP(tm) Tests <https://book.cakephp.org/2.0/en/development/testing.html>
|
2017-06-11 00:10:52 +02:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2009-11-06 18:35:14 +11:00
|
|
|
*
|
2010-10-03 12:31:21 -04:00
|
|
|
* Licensed under The MIT License
|
2013-02-08 21:22:51 +09:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2010-10-03 12:31:21 -04:00
|
|
|
* Redistributions of files must retain the above copyright notice
|
2009-11-06 18:35:14 +11:00
|
|
|
*
|
2017-06-11 00:10:52 +02:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2017-06-11 00:15:34 +02:00
|
|
|
* @link https://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
|
2011-07-26 01:46:14 -04:30
|
|
|
* @package Cake.Test.Fixture
|
2009-11-06 18:35:14 +11:00
|
|
|
* @since CakePHP(tm) v 1.2.0.4667
|
2017-06-11 00:23:14 +02:00
|
|
|
* @license https://opensource.org/licenses/mit-license.php MIT License
|
2009-11-06 18:35:14 +11:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2016-08-10 12:22:09 +02:00
|
|
|
* GroupUpdateAllFixture
|
2009-11-06 18:35:14 +11:00
|
|
|
*
|
2011-07-26 01:46:14 -04:30
|
|
|
* @package Cake.Test.Fixture
|
2009-11-06 18:35:14 +11:00
|
|
|
*/
|
2009-09-08 23:48:32 -04:00
|
|
|
class GroupUpdateAllFixture extends CakeTestFixture {
|
2012-03-17 23:31:17 -04:00
|
|
|
|
2011-12-15 22:52:07 -08:00
|
|
|
public $table = 'group_update_all';
|
2009-09-08 23:48:32 -04:00
|
|
|
|
2011-12-15 22:52:07 -08:00
|
|
|
public $fields = array(
|
2012-03-17 23:31:17 -04:00
|
|
|
'id' => array('type' => 'integer', 'null' => false, 'default' => null, 'key' => 'primary'),
|
2011-12-15 22:52:07 -08:00
|
|
|
'name' => array('type' => 'string', 'null' => false, 'length' => 29),
|
|
|
|
'code' => array('type' => 'integer', 'null' => false, 'length' => 4),
|
|
|
|
'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1))
|
|
|
|
);
|
2012-03-17 23:31:17 -04:00
|
|
|
|
2011-12-15 22:52:07 -08:00
|
|
|
public $records = array(
|
|
|
|
array(
|
2011-12-15 23:00:07 -08:00
|
|
|
'id' => 1,
|
|
|
|
'name' => 'group one',
|
|
|
|
'code' => 120
|
2011-12-15 22:52:07 -08:00
|
|
|
),
|
|
|
|
array(
|
2011-12-15 23:00:07 -08:00
|
|
|
'id' => 2,
|
|
|
|
'name' => 'group two',
|
|
|
|
'code' => 125
|
2011-12-15 22:52:07 -08:00
|
|
|
),
|
|
|
|
array(
|
2011-12-15 23:00:07 -08:00
|
|
|
'id' => 3,
|
|
|
|
'name' => 'group three',
|
|
|
|
'code' => 130
|
2011-12-15 22:52:07 -08:00
|
|
|
),
|
|
|
|
array(
|
2011-12-15 23:00:07 -08:00
|
|
|
'id' => 4,
|
|
|
|
'name' => 'group four',
|
|
|
|
'code' => 135
|
2011-12-15 22:52:07 -08:00
|
|
|
),
|
|
|
|
);
|
2009-09-08 23:48:32 -04:00
|
|
|
}
|