OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="UTF-8"?> |
| 2 <phpunit bootstrap="tests/bootstrap.php" colors="true"> |
| 3 <testsuites> |
| 4 <testsuite name="grpc-unit-tests"> |
| 5 <directory suffix="Test.php">tests/unit_tests</directory> |
| 6 </testsuite> |
| 7 <testsuite name="grpc-genereated-code-tests"> |
| 8 <file>tests/generated_code/GeneratedCodeTest.php</file> |
| 9 <file>tests/generated_code/GeneratedCodeWithCallbackTest.php</file> |
| 10 </testsuite> |
| 11 </testsuites> |
| 12 <filter> |
| 13 <whitelist> |
| 14 <directory suffix=".php">lib/Grpc</directory> |
| 15 </whitelist> |
| 16 </filter> |
| 17 <logging> |
| 18 <log type="coverage-html" target="./log/codeCoverage" charset="UTF-8" |
| 19 yui="true" highlight="true" |
| 20 lowUpperBound="75" highLowerBound="95"/> |
| 21 </logging> |
| 22 </phpunit> |
OLD | NEW |