Created
October 7, 2012 06:34
-
-
Save junichi11/3847328 to your computer and use it in GitHub Desktop.
PHPUnit Test Suite for CakePHP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class CakePHPControllerSuite extends PHPUnit_Framework_TestSuite { | |
public static function suite() { | |
$suite = new CakeTestSuite('Cake Controller Test Sute'); | |
$suite->addTestDirectory(TESTS . 'Case' . DS . 'Controller'); | |
return $suite; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment