Skip to content

Commit

Permalink
Add phpunit configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Marlinc committed Feb 14, 2016
1 parent 04f7afd commit 8d85433
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<phpunit
colors="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="./tests/bootstrap.php">

<testsuites>
<testsuite name="Twitter">
<directory>./tests/</directory>
</testsuite>
</testsuites>

<listeners>
<listener class="\Cake\TestSuite\Fixture\FixtureInjector">
<arguments>
<object class="\Cake\TestSuite\Fixture\FixtureManager" />
</arguments>
</listener>
</listeners>

<filter>
<blacklist>
<directory suffix=".php">./vendor/</directory>
<directory suffix=".ctp">./vendor/</directory>

<directory suffix=".php">./tests/</directory>
<directory suffix=".ctp">./tests/</directory>

<directory suffix=".php">./src/TestSuite/</directory>
<directory suffix=".ctp">./src/TestSuite/</directory>
</blacklist>
</filter>

</phpunit>

0 comments on commit 8d85433

Please sign in to comment.