Skip to content

Instantly share code, notes, and snippets.

@junichi11
Created October 7, 2012 06:34
Show Gist options
  • Save junichi11/3847328 to your computer and use it in GitHub Desktop.
Save junichi11/3847328 to your computer and use it in GitHub Desktop.
PHPUnit Test Suite for CakePHP
<?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