forked from cachethq/cachet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run the new static analysis checks in the tests
- Loading branch information
1 parent
b30a774
commit 8c273b8
Showing
3 changed files
with
53 additions
and
15 deletions.
There are no files selected for viewing
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of Cachet. | ||
* | ||
* (c) Alt Three Services Limited | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace CachetHQ\Tests\Cachet; | ||
|
||
use AltThree\TestBench\AnalysisTrait; | ||
use PHPUnit_Framework_TestCase as TestCase; | ||
|
||
/** | ||
* This is the analysis test class. | ||
* | ||
* @author Graham Campbell <[email protected]> | ||
*/ | ||
class AnalysisTest extends TestCase | ||
{ | ||
use AnalysisTrait; | ||
|
||
protected function getPaths() | ||
{ | ||
return [ | ||
realpath(__DIR__.'/../app'), | ||
realpath(__DIR__.'/../bootstrap'), | ||
realpath(__DIR__.'/../config'), | ||
realpath(__DIR__.'/../database'), | ||
realpath(__DIR__), | ||
]; | ||
} | ||
} |