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: Removing dev dependencies and making it work again
Date: 1 month ago
Size: 812 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="https://schema.phpunit.de/9.3/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" stopOnFailure="false" stopOnError="false"> <coverage> <include> <directory>src</directory> </include> <report> <html outputDirectory="qa/phpunit/html"/> </report> </coverage> <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> <logging> <testdoxText outputFile="qa/phpunit/testdox.txt"/> </logging> </phpunit>