cakephp2-php8/lib/Cake/Test/Case/Model/ModelTest.php

46 lines
1.5 KiB
PHP
Raw Normal View History

2010-06-24 05:23:41 +00:00
<?php
/**
* ModelTest file
2010-06-24 05:23:41 +00:00
*
* PHP 5
*
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
2011-05-29 21:31:39 +00:00
* Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
2010-06-24 05:23:41 +00:00
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
2011-05-29 21:31:39 +00:00
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
2010-06-24 05:23:41 +00:00
* @link http://cakephp.org CakePHP(tm) Project
* @package Cake.Test.Case
2010-06-24 05:23:41 +00:00
* @since CakePHP(tm) v 2.0
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
/**
* ModelTest class
2010-06-24 05:23:41 +00:00
*
* This test group will run model class tests
*
* @package Cake.Test.Case
2010-06-24 05:23:41 +00:00
*/
class ModelTest extends PHPUnit_Framework_TestSuite {
2010-06-24 05:23:41 +00:00
/**
* suite method, defines tests for this suite.
*
* @return void
*/
public static function suite() {
$suite = new PHPUnit_Framework_TestSuite('All Model related class tests');
$suite->addTestFile(CORE_TEST_CASES . DS . 'Model' . DS . 'ModelReadTest.php');
$suite->addTestFile(CORE_TEST_CASES . DS . 'Model' . DS . 'ModelWriteTest.php');
2011-07-19 08:57:31 +00:00
$suite->addTestFile(CORE_TEST_CASES . DS . 'Model' . DS . 'ModelDeleteTest.php');
$suite->addTestFile(CORE_TEST_CASES . DS . 'Model' . DS . 'ModelValidationTest.php');
$suite->addTestFile(CORE_TEST_CASES . DS . 'Model' . DS . 'ModelIntegrationTest.php');
2011-11-05 11:21:53 +00:00
$suite->addTestFile(CORE_TEST_CASES . DS . 'Model' . DS . 'ModelCrossSchemaHabtmTest.php');
2010-06-24 05:23:41 +00:00
return $suite;
}
}