Skip to content

Commit

Permalink
Migrating configure group test to phpunit and fixing docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Jun 24, 2010
1 parent 5d9c0ee commit 10c0494
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 51 deletions.
43 changes: 43 additions & 0 deletions cake/tests/cases/libs/all_configure.test.php
@@ -0,0 +1,43 @@
<?php
/**
* AllConfigureTest 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)
*/

/**
* AllConfigureTest class
*
* This test group will run cache engine tests.
*
* @package cake
* @subpackage cake.tests.groups
*/
class AllConfigureTest extends PHPUnit_Framework_TestSuite {

/**
* suite method, defines tests for this suite.
*
* @return void
*/
public static function suite() {
$suite = new PHPUnit_Framework_TestSuite('All Configure, App and ClassRegistry related tests');

$suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'configure.test.php');
$suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'class_registry.test.php');
return $suite;
}
}
2 changes: 1 addition & 1 deletion cake/tests/cases/libs/all_model.test.php
@@ -1,6 +1,6 @@
<?php
/**
* AllXmlTest file
* AllModelTest file
*
* PHP 5
*
Expand Down
2 changes: 1 addition & 1 deletion cake/tests/cases/libs/all_socket.test.php
@@ -1,6 +1,6 @@
<?php
/**
* AllXmlTest file
* AllSocketTest file
*
* PHP 5
*
Expand Down
49 changes: 0 additions & 49 deletions cake/tests/groups/configure.group.php

This file was deleted.

0 comments on commit 10c0494

Please sign in to comment.