PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Chun-Sheng, Li   URL Tracker Class   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: URL Tracker Class
Get the URL to where a short URL redirects
Author: By
Last change:
Date: 1 year ago
Size: 751 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" colors="true" backupGlobals="false" backupStaticAttributes="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> <testsuites> <testsuite name="Tests"> <directory suffix="Test.php">tests</directory> </testsuite> </testsuites> <coverage processUncoveredFiles="false"> <include> <directory suffix=".php">src</directory> </include> <exclude> <directory>vendor</directory> <directory>build</directory> </exclude> </coverage> </phpunit>