PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Vinicius Dias   PHP Google Search Crawler   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Google Search Crawler
Perform searches and retrieve results from Google
Author: By
Last change: Dependencies updated, tests corrected to new PHPUnit Version and expected errors from Google checked. Dockerfile created for running tests
Date: 5 years ago
Size: 912 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8" ?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.0/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" stopOnFailure="false" stopOnError="false"> <testsuites> <testsuite name="all"> <directory>tests</directory> </testsuite> <testsuite name="unit"> <directory>tests/Unit</directory> </testsuite> <testsuite name="functional"> <directory>tests/Functional</directory> </testsuite> </testsuites> <filter> <whitelist> <directory>src</directory> </whitelist> </filter> <logging> <log type="coverage-html" target="qa/phpunit/html" /> <log type="testdox-text" target="qa/phpunit/testdox.txt" /> </logging> </phpunit>