Skip to content

Commit

Permalink
adding missing group test
Browse files Browse the repository at this point in the history
  • Loading branch information
dogmatic69 committed Sep 29, 2012
1 parent 1a7adc9 commit 41d9d22
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Test/Case/AllThickboxTestsTest.php
@@ -0,0 +1,17 @@
<?php
class AllThickboxTestsTest extends PHPUnit_Framework_TestSuite {

/**
* Suite define the tests for this suite
*
* @return void
*/
public static function suite() {
$suite = new CakeTestSuite('All Thickbox test');

$path = CakePlugin::path('Thickbox') . 'Test' . DS . 'Case' . DS;
$suite->addTestDirectoryRecursive($path);

return $suite;
}
}

0 comments on commit 41d9d22

Please sign in to comment.