Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Convert tests from SimpleTest to PHPUnit
Browse files Browse the repository at this point in the history
  • Loading branch information
lox committed Dec 20, 2012
1 parent eb3b354 commit 07843df
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions phpunit.xml.dist
@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
verbose="true"
bootstrap="vendor/autoload.php"
colors="true"
>

<!-- Test suites to be run -->
<testsuites>
<testsuite name="ergo">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>

<!-- Filters for code coverage reporting -->
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./tests</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>

<!-- Test listeners -->
<listeners>
<listener class="\Mockery\Adapter\Phpunit\TestListener" file="vendor/mockery/mockery/library/Mockery/Adapter/Phpunit/TestListener.php"></listener>
</listeners>

</phpunit>

0 comments on commit 07843df

Please sign in to comment.