| <?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 |
| |
| https://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 |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xsi:noNamespaceSchemaLocation="../../vendor/phpunit/phpunit/phpunit.xsd" |
| bootstrap="test/test_helper.php" |
| executionOrder="depends,defects" |
| beStrictAboutOutputDuringTests="true" |
| cacheDirectory=".phpunit.cache" |
| requireCoverageMetadata="false" |
| beStrictAboutCoverageMetadata="true" |
| displayDetailsOnTestsThatTriggerNotices="true" |
| displayDetailsOnTestsThatTriggerDeprecations="true" |
| displayDetailsOnTestsThatTriggerErrors="true" |
| displayDetailsOnTestsThatTriggerWarnings="true" |
| displayDetailsOnPhpunitDeprecations="true" |
| > |
| <php> |
| <ini name="date.timezone" value="America/New_York"/> |
| </php> |
| <testsuites> |
| <testsuite name="AvroAllTests"> |
| <directory suffix="Test.php">test</directory> |
| <exclude>test/InterOpTest.php</exclude> |
| </testsuite> |
| </testsuites> |
| <source> |
| <include> |
| <directory suffix=".php">lib</directory> |
| </include> |
| </source> |
| </phpunit> |