Navigation Menu

Skip to content

Commit

Permalink
Migrating models group to phpunit
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Jun 24, 2010
1 parent 72c7c3f commit 2fcaa8d
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 54 deletions.
46 changes: 46 additions & 0 deletions cake/tests/cases/libs/all_model.test.php
@@ -0,0 +1,46 @@
<?php
/**
* AllXmlTest file
*
* PHP 5
*
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package cake
* @subpackage cake.tests.cases
* @since CakePHP(tm) v 2.0
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/

/**
* AllModelTest class
*
* This test group will run model class tests
*
* @package cake
* @subpackage cake.tests.groups
*/
class AllModelTest extends PHPUnit_Framework_TestSuite {

/**
* 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 . 'libs' . DS . 'model' . DS . 'model_behavior.test.php');
$suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'model' . DS . 'model_read.test.php');
$suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'model' . DS . 'model_write.test.php');
$suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'model' . DS . 'model_validation.test.php');
$suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'model' . DS . 'model_integration.test.php');
return $suite;
}
}
54 changes: 0 additions & 54 deletions cake/tests/groups/model.group.php

This file was deleted.

0 comments on commit 2fcaa8d

Please sign in to comment.