Skip to content

Commit

Permalink
Adding AllORM test group
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed May 26, 2013
1 parent b214d9d commit 399fb0a
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions lib/Cake/Test/TestCase/AllORMTest.php
@@ -0,0 +1,44 @@
<?php
/**
* AllDatabaseTest file
*
* PHP 5
*
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @since CakePHP(tm) v 3.0
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
namespace Cake\Test\TestCase;

use Cake\TestSuite\TestSuite;

/**
* AllORMTest class
*
* This test group will run ORM tests
*
*/
class AllORMTest extends \PHPUnit_Framework_TestSuite {

/**
* suite method, defines tests for this suite.
*
* @return void
*/
public static function suite() {
$path = CORE_TEST_CASES . DS . 'ORM';

$suite = new TestSuite('Table, Entity, Query and Associations');
$suite->addTestDirectoryRecursive($path);
return $suite;
}
}

0 comments on commit 399fb0a

Please sign in to comment.