| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| |
| --> |
| |
| <phpunit |
| backupGlobals="false" |
| backupStaticAttributes="false" |
| strict="true" |
| verbose="true"> |
| |
| <testsuites> |
| <testsuite name="MyProject1"> |
| <directory suffix="Test.php">mysrc/mytest1</directory> |
| <directory suffix="Test.php">mytest2</directory> |
| </testsuite> |
| </testsuites> |
| |
| <logging> |
| <log type="coverage-html" target="build/coverage" title="MyProject1" |
| charset="UTF-8" yui="true" highlight="true" |
| lowUpperBound="35" highLowerBound="70"/> |
| <log type="coverage-clover" target="build/logs/clover.xml"/> |
| <log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/> |
| </logging> |
| |
| <filter> |
| <whitelist addUncoveredFilesFromWhitelist="true"> |
| <directory suffix=".php">mysrc</directory> |
| <exclude> |
| <file>src/bootstrap.php</file> |
| </exclude> |
| </whitelist> |
| </filter> |
| |
| </phpunit> |