~tsep-dev/tsep/0.9-beta

« back to all changes in this revision

Viewing changes to branches/symfony/cake/tests/fixtures/product_fixture.php

  • Committer: geoffreyfishing
  • Date: 2011-01-11 23:46:12 UTC
  • Revision ID: svn-v4:ae0de26e-ed09-4cbe-9a20-e40b4c60ac6c::125
Created a symfony branch for future migration to symfony

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
 * Short description for file.
 
4
 *
 
5
 * PHP versions 4 and 5
 
6
 *
 
7
 * CakePHP(tm) Tests <http://book.cakephp.org/view/1196/Testing>
 
8
 * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
 
9
 *
 
10
 *  Licensed under The Open Group Test Suite License
 
11
 *  Redistributions of files must retain the above copyright notice.
 
12
 *
 
13
 * @copyright     Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
 
14
 * @link          http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests
 
15
 * @package       cake
 
16
 * @subpackage    cake.tests.fixtures
 
17
 * @since         CakePHP(tm) v 1.2.0.4667
 
18
 * @license       http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
 
19
 */
 
20
 
 
21
/**
 
22
 * Short description for class.
 
23
 *
 
24
 * @package       cake
 
25
 * @subpackage    cake.tests.fixtures
 
26
 */
 
27
class ProductFixture extends CakeTestFixture {
 
28
 
 
29
/**
 
30
 * name property
 
31
 *
 
32
 * @var string 'Product'
 
33
 * @access public
 
34
 */
 
35
        var $name = 'Product';
 
36
 
 
37
/**
 
38
 * fields property
 
39
 *
 
40
 * @var array
 
41
 * @access public
 
42
 */
 
43
        var $fields = array(
 
44
                'id' => array('type' => 'integer', 'key' => 'primary'),
 
45
                'name' => array('type' => 'string', 'length' => 255, 'null' => false),
 
46
                'type' => array('type' => 'string', 'length' => 255, 'null' => false),
 
47
                'price' => array('type' => 'integer', 'null' => false)
 
48
        );
 
49
 
 
50
/**
 
51
 * records property
 
52
 *
 
53
 * @var array
 
54
 * @access public
 
55
 */
 
56
        var $records = array(
 
57
                array('name' => 'Park\'s Great Hits', 'type' => 'Music', 'price' => 19),
 
58
                array('name' => 'Silly Puddy', 'type' => 'Toy', 'price' => 3),
 
59
                array('name' => 'Playstation', 'type' => 'Toy', 'price' => 89),
 
60
                array('name' => 'Men\'s T-Shirt', 'type' => 'Clothing', 'price' => 32),
 
61
                array('name' => 'Blouse', 'type' => 'Clothing', 'price' => 34),
 
62
                array('name' => 'Electronica 2002', 'type' => 'Music', 'price' => 4),
 
63
                array('name' => 'Country Tunes', 'type' => 'Music', 'price' => 21),
 
64
                array('name' => 'Watermelon', 'type' => 'Food', 'price' => 9)
 
65
        );
 
66
}