NumberTreeTwoFixture.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * Tree behavior class.
  4. *
  5. * Enables a model object to act as a node-based tree.
  6. *
  7. * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
  8. * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
  9. *
  10. * Licensed under The MIT License
  11. * For full copyright and license information, please see the LICENSE.txt
  12. * Redistributions of files must retain the above copyright notice
  13. *
  14. * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
  15. * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
  16. * @since 1.2.0
  17. * @license http://www.opensource.org/licenses/mit-license.php MIT License
  18. */
  19. namespace Cake\Test\Fixture;
  20. use Cake\TestSuite\Fixture\TestFixture;
  21. /**
  22. * Class NumberTreeTwoFixture
  23. *
  24. * Generates a tree of data for use testing the tree behavior
  25. *
  26. */
  27. class NumberTreeTwoFixture extends TestFixture {
  28. /**
  29. * fields property
  30. *
  31. * @var array
  32. */
  33. public $fields = array(
  34. 'id' => ['type' => 'integer'],
  35. 'name' => ['type' => 'string', 'null' => false],
  36. 'number_tree_id' => ['type' => 'integer', 'null' => false],
  37. 'parent_id' => 'integer',
  38. 'lft' => ['type' => 'integer', 'null' => false],
  39. 'rght' => ['type' => 'integer', 'null' => false],
  40. '_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id']]]
  41. );
  42. }