array('type' => 'integer', 'key' => 'primary'), 'random' => array('type' => 'integer', 'null' => false), 'name' => array('type' => 'string', 'null' => false), 'slug' => array('type' => 'string', 'null' => true), 'section' => array('type' => 'integer', 'null' => true), ); /** * records property * * The records are created out of sequence so that theirs id are not sequncial. * The order field values are used only in the list behavior test * * @var array */ public $records = array( array('random' => 1, 'name' => 'First'), array('random' => 10, 'name' => 'Tenth'), array('random' => 4, 'name' => 'Fourth'), array('random' => 8, 'name' => 'Eigth'), array('random' => 5, 'name' => 'Fifth'), array('random' => 7, 'name' => 'Seventh'), array('random' => 3, 'name' => 'Third'), array('random' => 9, 'name' => 'Ninth'), array('random' => 2, 'name' => 'Second'), array('random' => 6, 'name' => 'Sixth'), ); }