Initial commit.
Signed-off-by: Peter Breuls <breuls@devize.nl>
This commit is contained in:
commit
2cbede7d67
12 changed files with 1053 additions and 0 deletions
19
phpunit.xml
Normal file
19
phpunit.xml
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue