Initial commit.

Signed-off-by: Peter Breuls <breuls@devize.nl>
This commit is contained in:
Peter Breuls 2013-05-09 18:21:37 +02:00
commit 2cbede7d67
12 changed files with 1053 additions and 0 deletions

19
phpunit.xml Normal file
View file

@ -0,0 +1,19 @@
<phpunit colors="true">
<testsuites>
<testsuite name="ClosureCompiler">
<directory>tests</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="tests/coverage" charset="UTF-8" highlight="true" lowUpperBound="35" highLowerBound="70"/>
</logging>
<filter>
<whitelist addUncoveredFilesFromWhitelist="false">
<directory suffix=".php">./</directory>
<exclude>
<directory suffix=".php">tests</directory>
<directory suffix=".php">vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>