Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Create AllEnvironmentsTest.php
  • Loading branch information
josegonzalez committed Apr 13, 2014
1 parent 9ba1d8b commit 7610b8b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Test/Case/AllEnvironmentsTest.php
@@ -0,0 +1,21 @@
<?php
/**
* All Environments plugin tests
*/
class AllEnvironmentsTest extends CakeTestCase {

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

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

return $suite;
}

}

0 comments on commit 7610b8b

Please sign in to comment.