
multiple API verstions for each service. This included updating the directory structure for the tests and moving the Common files to a Common namespace. Implements blueprint multiple-api-versions Change-Id: I9f9dfc4ef8f4172243519772a9af86dd92690fcf
22 lines
589 B
XML
22 lines
589 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit colors="true">
|
|
<testsuites>
|
|
<testsuite name="PHPUnit">
|
|
<directory>tests/Tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<logging>
|
|
<log
|
|
type="coverage-html"
|
|
target="build/coverage"
|
|
charset="UTF-8"
|
|
yui="true"
|
|
highlight="true"
|
|
lowUpperBound="35"
|
|
highLowerBound="70"
|
|
showUncoveredFiles="true"
|
|
/>
|
|
<log type="coverage-clover" target="build/logs/clover.xml"/>
|
|
</logging>
|
|
</phpunit>
|